Callback into unloaded DLL
Often times you run into an issue where you get a callback into an already unloaded DLL.
Following command reloads the symbols for the unloaded dll and gives you a nice stack.Very useful for programmers dealing with async multi threaded programs.
.reload /unl unloaded.DLL
Comments
Post a Comment