From: <ebl...@us...> - 2006-11-05 14:54:54
|
Revision: 17670 http://svn.sourceforge.net/gaim/?rev=17670&view=rev Author: eblanton Date: 2006-11-05 06:54:50 -0800 (Sun, 05 Nov 2006) Log Message: ----------- This fixes the dbus exit(1) problem -- we may still have a bug, or dbus may. Modified Paths: -------------- trunk/libgaim/dbus-server.c Modified: trunk/libgaim/dbus-server.c =================================================================== --- trunk/libgaim/dbus-server.c 2006-11-05 08:22:33 UTC (rev 17669) +++ trunk/libgaim/dbus-server.c 2006-11-05 14:54:50 UTC (rev 17670) @@ -579,6 +579,10 @@ return; } + /* Do not allow libdbus to exit on connection failure (This may + work around random exit(1) on SIGPIPE errors) */ + dbus_connection_set_exit_on_disconnect (gaim_dbus_connection, FALSE); + if (!dbus_connection_register_object_path(gaim_dbus_connection, DBUS_PATH_GAIM, &vtable, NULL)) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |