Crash dump - WinDbg - force PDB files to match doesn't work?

前端 未结 3 1140
轮回少年
轮回少年 2021-01-04 17:52

I have a crash dump for a customer\'s application built with a very old version of our dll (release build, don\'t have original symbols) that I\'ve been analyzing in WinDbg.

3条回答
  •  感情败类
    2021-01-04 18:44

    Its unfortunate that you do not have the matching symbols for your DLL :(. As per my understanding, any attempt now will not be able to get you an exact matching PDB.

    Recycling some old threads which should help :

    Is it possible to (re)create a PDB file after a DLL is made

    Tool to find if dll (or) exe and PDB file match

    Your best bet would be

    a. sync your code back to the time when the DLL was released

    b. build and create PDB using the same tool set.

    c. use .reload /i option to load symbols

提交回复
热议问题