“First-chance exception” meaning in MFC Application?

前端 未结 3 644
北恋
北恋 2020-12-10 22:59

When I run my Windows Application(MFC) I get two Warnings.

First-chance exception at 0x01046a44 in XXX.exe: 0xC0000005: Access violation reading location 0x000

3条回答
  •  自闭症患者
    2020-12-10 23:34

    This error means, that code from ntdll tries to access virtual address 0x00000048, that is not accessible. Maybe you call some function from ntdll and pass invalid pointer as a parameter.

提交回复
热议问题