Bug 795123 - plug-in crash starts neverending loop.
Since commit 9c8a8ae576, we don't run gimp_quit(), which properly quits
the plug-in executable, to make sure that GIMP gets the information that
it crashed. Instead quit with `exit (EXIT_FAILURE)`.
This commit is contained in:
parent
3f95dc52d3
commit
4bc982b84a
1 changed files with 2 additions and 0 deletions
|
|
@ -2001,6 +2001,7 @@ gimp_fatal_func (const gchar *log_domain,
|
|||
* We want the plug-in to continue its normal crash course, otherwise
|
||||
* we won't get the "Plug-in crashed" error in GIMP.
|
||||
*/
|
||||
exit (EXIT_FAILURE);
|
||||
}
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
|
|
@ -2094,6 +2095,7 @@ gimp_plugin_sigfatal_handler (gint sig_num)
|
|||
* We want the plug-in to continue its normal crash course, otherwise
|
||||
* we won't get the "Plug-in crashed" error in GIMP.
|
||||
*/
|
||||
exit (EXIT_FAILURE);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue