Bug 577024 – help-browser plugin crashes when used with webkit 1.1.3

2009-03-28  Sven Neumann  <sven@gimp.org>

	Bug 577024 – help-browser plugin crashes when used with webkit 1.1.3

	* plug-ins/help-browser/help-browser.c (run): call g_thread_init().
	Seems to be needed with newer versions of webkit.


svn path=/trunk/; revision=28227
This commit is contained in:
Sven Neumann 2009-03-28 16:42:50 +00:00 committed by Sven Neumann
parent a4e7e678c2
commit ebf0a98b18
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2009-03-28 Sven Neumann <sven@gimp.org>
Bug 577024 help-browser plugin crashes when used with webkit 1.1.3
* plug-ins/help-browser/help-browser.c (run): call g_thread_init().
Seems to be needed with newer versions of webkit.
2009-03-28 Michael Natterer <mitch@gimp.org>
Bug 566575 Warning when creating sample point and releasing Ctrl

View File

@ -128,6 +128,9 @@ run (const gchar *name,
INIT_I18N ();
if (! g_thread_supported ())
g_thread_init (NULL);
switch (run_mode)
{
case GIMP_RUN_INTERACTIVE: