# HG changeset patch # User Mark Doliner # Date 1336116831 0 # Node ID 4acc5b98f143b6357b2b6a10fb0a2c078b8a9973 # Parent 069919a0896c704553bdad69707bfc1ceea1f915 Remove redundant check (g_free does this for us) diff -r 069919a0896c -r 4acc5b98f143 libpurple/protocols/msn/msg.c --- a/libpurple/protocols/msn/msg.c Thu May 03 09:28:11 2012 +0000 +++ b/libpurple/protocols/msn/msg.c Fri May 04 07:33:51 2012 +0000 @@ -379,8 +379,7 @@ if (len > 1664) len = 1664; - if (msg->body != NULL) - g_free(msg->body); + g_free(msg->body); if (data != NULL && len > 0) {