From: <the...@us...> - 2006-11-01 07:30:13
|
Revision: 17647 http://svn.sourceforge.net/gaim/?rev=17647&view=rev Author: thekingant Date: 2006-10-31 23:29:53 -0800 (Tue, 31 Oct 2006) Log Message: ----------- sf patch #1588425, from Ka-Hing Cheung According to glib-doc, "a GError* must be initialized to NULL before passing its address to a function that can report errors." Modified Paths: -------------- trunk/libgaim/util.c Modified: trunk/libgaim/util.c =================================================================== --- trunk/libgaim/util.c 2006-11-01 05:53:09 UTC (rev 17646) +++ trunk/libgaim/util.c 2006-11-01 07:29:53 UTC (rev 17647) @@ -2376,7 +2376,7 @@ { const char *user_dir = gaim_user_dir(); gchar *filename_full; - GError *error; + GError *error = NULL; gchar *contents = NULL; gsize length; xmlnode *node = NULL; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |