[Pidgin] #842: segfault in solaris 9
Pidgin
trac at pidgin.im
Wed Jul 11 11:54:31 EDT 2007
#842: segfault in solaris 9
---------------------------+------------------------------------------------
Reporter: dhalik | Owner: tmcmahon2
Type: defect | Status: closed
Priority: minor | Milestone: 2.1.2
Component: pidgin (gtk) | Version: 2.0
Resolution: invalid | Keywords:
Pending: 0 |
---------------------------+------------------------------------------------
Changes (by tmcmahon2):
* status: assigned => closed
* resolution: => invalid
Comment:
Closing as not a pidgin bug. Per some Sun folks his is a gtk+ null
depointer reference. The diff for gtk+ 2.11.5 is below
{{{
--- gtk+-2.11.5/gtk/gtkiconfactory.c.orig 2007-07-11 16:08:18.586404000
+0800
+++ gtk+-2.11.5/gtk/gtkiconfactory.c 2007-07-11 16:09:14.046179000 +0800
@@ -1468,8 +1468,9 @@
if (!tmp_pixbuf)
{
g_warning ("Error loading theme icon '%s' for stock: %s",
- icon_source->source.icon_name, error->message);
- g_error_free (error);
+ icon_source->source.icon_name, error &&
error->message?error->message:"NULL");
+ if (error)
+ g_error_free (error);
return NULL;
}
}}}
I've asked the that the Blastwave version get an update. The Solaris bug
should get get fixed in the current dev release but it might take a bit to
get back into S10 and S9 GTK versions.
--
Ticket URL: <http://developer.pidgin.im/ticket/842#comment:35>
Pidgin <http://pidgin.im>
Pidgin
More information about the Tracker
mailing list