Reputation: 105
I am new to windbg and i am trying to investigate a crash dump and I found out this statement while analyzing the dump.
Overlapped_Module: Address regions for time.dll and date.dll overlap.
Can any one explain what it means and whether it is the reason for the crash
Upvotes: 1
Views: 2200
Reputation: 394051
It means that the address regions for those dlls overlap which should not really happen.
There are a few potential causes, firstly the dump may have been created incorrectly, secondly the kernel may have received the load events but missed the unload events, you can also confirm whether these modules are loaded at all by calling lm
and seeing if time.dll
and date.dll
are loaded/unloaded/deferred.
Upvotes: 2