No matching binary error found

I am trying to debug a mini drive. have debug release symbols and release binary files just like a crash.

When debugging this failure and pointing to the characters, I still get the error "There are no matching binaries."

I use the correct characters, binaries and point to the correct location.

So why can this happen? I see a slight difference in the dll timestamp loaded in VS (9:03 AM) and in the binary release (9:04 AM)

Could this be the cause of the error?

Any solutions for this, I need to fix the crash, and since this crash happens on the client machine, I cannot reproduce it.

+7
debugging visual-studio crash
source share
1 answer

You can try to debug the dump using windbg / ntsd (from the Debugging Tools for Windows package that comes with the Windows SDK). There you can try to load the characters, ignoring the mismatch in the .reload / i 'command of the .pdb version.

+2
source share

All Articles