# HG changeset patch # User Paul Aurich # Date 1249185532 0 # Node ID aca8afc93264217906b92b3eb5bb4b6dc3cb1dc4 # Parent 3eef8392a54b661d771247585930a38188f6099e oscar: g_new0 cannot fail. It always aborts, right? Refs #9822. diff -r 3eef8392a54b -r aca8afc93264 libpurple/protocols/oscar/family_icq.c --- a/libpurple/protocols/oscar/family_icq.c Sun Aug 02 03:00:00 2009 +0000 +++ b/libpurple/protocols/oscar/family_icq.c Sun Aug 02 03:58:52 2009 +0000 @@ -735,14 +735,6 @@ info = g_new0(struct aim_icq_info, 1); - if (info == NULL) - { - g_free(uin); - g_free(status_note_title); - - break; - } - bslen = 13 + strlen(uin) + 30 + 6 + 4 + 55 + 85 + 4; byte_stream_new(&bs, 4 + bslen);