A
Alex Shirshov
Hello, All!
When the VB.NET projects grows up to the several thousand lines of code,
every 5 minutes i catch the av from devenv.exe.
Unhandled exception at 0x52a82a9d (msvb7.dll) in devenv.exe: 0xC0000005:
Access violation writing location 0x00000000.
Here is disassemply
eax contains 0.
I'm just set the next statement to the next instrustion (pop esi) and keep
on work.
Is this documented bug or i have some incorrect settings of my machine or
vs? I try to uncheck all vb-specific text editor settings, but it doesn't
help.
With best regards, Alex Shirshov.
When the VB.NET projects grows up to the several thousand lines of code,
every 5 minutes i catch the av from devenv.exe.
Unhandled exception at 0x52a82a9d (msvb7.dll) in devenv.exe: 0xC0000005:
Access violation writing location 0x00000000.
Here is disassemply
Code:
52A82A87 db f1h
52A82A88 mov eax,dword ptr [esi+14h]
52A82A8B test eax,eax
52A82A8D jne 52A815F8
52A82A93 mov eax,dword ptr [esi+18h]
52A82A96 mov dword ptr [esi+4],0
---> 52A82A9D mov word ptr [eax],0 ;here!!
52A82AA2 pop esi
52A82AA3 ret
52A82AA4 push cs
52A82AA5 fnsave [edx-5B56B3AEh]
52A82AAB push edx
52A82AAC fisttp qword ptr [ecx]
eax contains 0.
I'm just set the next statement to the next instrustion (pop esi) and keep
on work.
Is this documented bug or i have some incorrect settings of my machine or
vs? I try to uncheck all vb-specific text editor settings, but it doesn't
help.
With best regards, Alex Shirshov.