OBS has crashed!

romanmu

New Member
When recording a video, an error message crashes, how do I solve it?

"--------------------------- OBS has crashed! --------------------------- Woops, OBS has crashed! Would you like to copy the crash log to the clipboard? The crash log will still be saved to: C:\Users\BRomplat\AppData\Roaming\obs-studio\crashes\Crash 2024-04-03 11-39-37.txt "

log^
Unhandled exception: c0000005
Date/Time: 2024-04-03, 11:39:37
Fault address: 7FF9421C966C (c:\program files\steinberg\vstplugins\izotope\iznectar3.dll)
libobs version: 30.1.0 (64-bit)
Windows version: 10.0 build 19045 (release: 22H2; revision: 4170; 64-bit)
CPU: AMD Ryzen 5 5600G with Radeon Graphics
 

Attachments

Load the crash log into a text editor, and you see one header section and below the header section a number of sections, each for one thread of the crashed OBS.

The top thread section is the one where the crash happened. The list in that section is the call stack, the stack of called (but not yet returned from) functions. The top entry is the function where the crash happened, and it's provided with the *.dll name where the crashed code resides and the address. With the name of the dll you can often identify the part of the app where the crash took place, in this case some dll provided by some plugin. You just need to find the plugin that installs this dll.

Sometimes a crash happens in some system function, but that system function was called by some plugin dll. In this case (not in our case) you find the plugin dll name some entries below the top entry.
 
Back
Top