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

1 Answer

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.

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy