libobs: Set core signal handlers to NULL after destroying

Fixes https://obsproject.com/mantis/view.php?id=595
This commit is contained in:
Caitlin Potter 2016-08-21 21:00:07 -04:00
parent 89d6d5ffce
commit 65e738e253

View File

@ -820,6 +820,8 @@ void obs_shutdown(void)
obs_free_graphics();
proc_handler_destroy(obs->procs);
signal_handler_destroy(obs->signals);
obs->procs = NULL;
obs->signals = NULL;
module = obs->first_module;
while (module) {