# HG changeset patch # User Ethan Blanton # Date 1070815284 0 # Node ID c2e391c480b6644de38c36c09cb453768db58c4f # Parent d52f01b821df6735fc426564edbe7e5001d45dd7 [gaim-migrate @ 8436] Oh, and this creates unnecessary output, so I'm changing it. committer: Tailor Script diff -r d52f01b821df -r c2e391c480b6 src/stringref.c --- a/src/stringref.c Sun Dec 07 16:38:43 2003 +0000 +++ b/src/stringref.c Sun Dec 07 16:41:24 2003 +0000 @@ -94,7 +94,8 @@ void gaim_stringref_unref(GaimStringref *stringref) { - g_return_if_fail(stringref != NULL); + if (stringref == NULL) + return; if ((--(stringref->ref) & 0x7fffffff) == 0) { if (stringref->ref & 0x80000000) gclist = g_list_remove(gclist, stringref);