# HG changeset patch # User Jeffrey Connelly # Date 1201571486 0 # Node ID ae5917260eacd9868e9fbb038b73283387bd85a5 # Parent 9f95357c21b9ccff619d8e66bae4c476c1839953# Parent 6337a8fd7784c62191e6986d42eb7ed612637fc3 merge of '9d22bc3a3d82cb26e7196d41b472b81c7660274d' and 'f6e17bf35872d70d9ebba4cf860470a5b21d54ce' diff -r 9f95357c21b9 -r ae5917260eac libpurple/plugins/tcl/tcl_cmds.c --- a/libpurple/plugins/tcl/tcl_cmds.c Tue Jan 29 01:51:01 2008 +0000 +++ b/libpurple/plugins/tcl/tcl_cmds.c Tue Jan 29 01:51:26 2008 +0000 @@ -25,6 +25,7 @@ #include "internal.h" #include "conversation.h" #include "connection.h" +#include "eventloop.h" #include "account.h" #include "server.h" #include "notify.h" @@ -1778,7 +1779,7 @@ } /* We can't unload immediately, but we can unload at the first * known safe opportunity. */ - g_idle_add(unload_self, (gpointer)plugin); + purple_timeout_add(0, unload_self, (gpointer)plugin); return TCL_OK; } diff -r 9f95357c21b9 -r ae5917260eac libpurple/protocols/bonjour/bonjour.c --- a/libpurple/protocols/bonjour/bonjour.c Tue Jan 29 01:51:01 2008 +0000 +++ b/libpurple/protocols/bonjour/bonjour.c Tue Jan 29 01:51:26 2008 +0000 @@ -673,11 +673,12 @@ /* Try to figure out a good host name to use */ /* TODO: Avoid 'localhost,' if possible */ - if (gethostname(hostname, 255) != 0) { + if (gethostname(hostname, sizeof(hostname)) != 0) { purple_debug_warning("bonjour", "Error when getting host name: %s. Using \"localhost.\"\n", g_strerror(errno)); strcpy(hostname, "localhost"); } + hostname[sizeof(hostname) - 1] = '\0'; default_hostname = g_strdup(hostname); }