How do I get the "bucket id" that winqual uses if I have a minidump file or exception structure? (Windows c++)

Posted by Tim on Stack Overflow See other posts from Stack Overflow or by Tim
Published on 2011-01-07T22:20:41Z Indexed on 2011/01/08 5:54 UTC
Read the original article Hit count: 187

Filed under:
|
|
|
|

There are a few related questions on SO - but have not found the answer -

I would like to generate a "signature"/bucket id to report a minidump/crash back to our issue tracking system. Since MS already does this with "bucket ids" I figured I could just re-use their bucket/signature generation.

Can I get that ID from either a top level filter or the _EXCEPTION_POINTERS object I have inside the filter or the _MINIDUMP_EXCEPTION_INFORMATION structure or from the minidump itself?

This is a C++ application.

© Stack Overflow or respective owner

Related posts about c++

Related posts about Windows