nvoglv32.dll!561c0713() Error

Started by
3 comments, last by BaneTrapper 11 years, 6 months ago
Hello.
I am currently running my program and encountering this error, I tried using debuger to find out where the bug is coming from, but without any luck.
when i try to close my application i get a window that says
" Unhandled exception at 0x552d0713 in Adventure.exe: 0xC0000005: Access violation reading location 0xfeeefef6. "


Yesterday i run the application about 100 times, was doing bug tests.
Today i did not modify any code, and i start getting this error, but i did update my graphic drivers, may that be the problem?
The nvoglv32.dll is some driver from nvidia graphic card dll from what i found on google

its a project using c++ visual studio 2010, some std stuff like vector string, and sfml2.0

Any help on what may be causing this error, to point me what to look for to fix.

This is the debug report

'Adventure.exe': Loaded 'C:\C++ Visual projects\Adventure\Debug\Adventure.exe', Symbols loaded.
'Adventure.exe': Loaded 'C:\Windows\System32\ntdll.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\kernel32.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\KernelBase.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\C++ Visual projects\Adventure\Debug\sfml-system-d-2.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\msvcr100d.dll', Symbols loaded.
'Adventure.exe': Loaded 'C:\Windows\System32\msvcp100d.dll', Symbols loaded.
'Adventure.exe': Loaded 'C:\C++ Visual projects\Adventure\Debug\sfml-window-d-2.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\opengl32.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\msvcrt.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\advapi32.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\sechost.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\rpcrt4.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\gdi32.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\user32.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\lpk.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\usp10.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\glu32.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\ddraw.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\dciman32.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\setupapi.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\cfgmgr32.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\oleaut32.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\ole32.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\devobj.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\dwmapi.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\winmm.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\C++ Visual projects\Adventure\Debug\sfml-graphics-d-2.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\imm32.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\msctf.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\uxtheme.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\nvoglv32.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\shell32.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\shlwapi.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\version.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\wintrust.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\crypt32.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\msasn1.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\ntmarta.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\Wldap32.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\powrprof.dll', Cannot find or open the PDB file
The thread 'Win32 Thread' (0x1320) has exited with code 0 (0x0).
'Adventure.exe': Unloaded 'C:\Windows\System32\powrprof.dll'
The thread 'Win32 Thread' (0x151c) has exited with code 0 (0x0).
The thread 'Win32 Thread' (0x11f4) has exited with code 0 (0x0).
'Adventure.exe': Loaded 'C:\Windows\System32\dinput.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\hid.dll', Cannot find or open the PDB file
'Adventure.exe': Loaded 'C:\Windows\System32\cryptbase.dll', Cannot find or open the PDB file
The thread 'Win32 Thread' (0x1438) has exited with code 0 (0x0).
The thread 'Win32 Thread' (0xf18) has exited with code 0 (0x0).
The thread 'Win32 Thread' (0x12cc) has exited with code 0 (0x0).
First-chance exception at 0x56370713 in Adventure.exe: 0xC0000005: Access violation reading location 0xfeeefef6.
Unhandled exception at 0x56370713 in Adventure.exe: 0xC0000005: Access violation reading location 0xfeeefef6.
The program '[4424] Adventure.exe: Native' has exited with code -1073741819 (0xc0000005).
Advertisement
The error message says you're reading from a memory location that is very close to the bit pattern 0xFEEEFEEE that Visual Studio uses to mark freed memory in the debug runtime libraries. You're probably accessing memory that you have already released.

The error message says you're reading from a memory location that is very close to the bit pattern 0xFEEEFEEE that Visual Studio uses to mark freed memory in the debug runtime libraries. You're probably accessing memory that you have already released.

I currently use no memory on heep,
No functions that may use leaked memory.
The only memory play here is the sfml2.0 cleaning it self up, and i don't touch it or make it clear it self somewhere before its deconstructor destroys it as it sould.

BTW, i don't get the error always only 2/3 runs, sometimes application exits and its all cool...
Perhaps not directly and perhaps not in your own written code, but somewhere your application is relying on dynamic memory that has somehow been freed and later accessed. Do you get a stack trace in the debugger so you can see which functions have been called and where the code is crashing?

Perhaps not directly and perhaps not in your own written code, but somewhere your application is relying on dynamic memory that has somehow been freed and later accessed. Do you get a stack trace in the debugger so you can see which functions have been called and where the code is crashing?


Probably yes, i am not that good at working it out.
the error pops up at "return 0" or after where is no code... i cant quite figure it out yet.

Most people told me its i messed up something in project setting, and i have mes
sed around those.
But i created new project and copied code, still getting error.

Also running the program bare boned, without even building my code causes no error, so id guess that its my code breaking it.

Not much you can do for me now... Thanks on hint tho.

This topic is closed to new replies.

Advertisement