Access violation while the program was idle - not trace information to track down the bug

后端 未结 3 535
花落未央
花落未央 2021-02-11 11:07

I have a program that just popped up an AV. Until now the Eureka Log could find the source code line that generated the error but now it displays only this:

Acc         


        
3条回答
  •  眼角桃花
    2021-02-11 11:51

    I just wonder what's on line 76[16] in Amper.exe... That line number might be a hint of the location of the error.
    Then again, when it's just happening during an idle moment then it basically happens when the system is processing Windows messages like the mouse moving, keyboard events, timer updates and a lot more.
    It sometimes helps to search for the error message plus code. I've done a quick scan and found this KB from MS which suggests that this kind of error can happen when you call certain Windows API's with invalid parameters. But this KB doesn't apply to your error. Still, it gives you an idea about what to check: any Windows API call you make in your own code.
    Does it also generate this exception in the IDE, while you're debugging?

提交回复
热议问题