diff options
author | Markus Armbruster <armbru@redhat.com> | 2014-06-06 18:32:08 +0200 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2014-06-10 19:39:34 +0400 |
commit | ec15993d9d7ea7108101f068c9929a62be29dc67 (patch) | |
tree | b959195b260146cb5416f4123ffb8506a5a6a053 /libcacard/vcard.c | |
parent | 6b1dd54b6a4652a3a1e15a4beacd3be554a9ade1 (diff) |
libcacard: Drop superfluous conditionals around g_free()
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'libcacard/vcard.c')
-rw-r--r-- | libcacard/vcard.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/libcacard/vcard.c b/libcacard/vcard.c index 6aaf085ecc..bf342aaf6d 100644 --- a/libcacard/vcard.c +++ b/libcacard/vcard.c @@ -51,9 +51,7 @@ vcard_buffer_response_delete(VCardBufferResponse *buffer_response) if (buffer_response == NULL) { return; } - if (buffer_response->buffer) { - g_free(buffer_response->buffer); - } + g_free(buffer_response->buffer); g_free(buffer_response); } @@ -121,10 +119,8 @@ vcard_delete_applet(VCardApplet *applet) applet->applet_private_free(applet->applet_private); applet->applet_private = NULL; } - if (applet->aid) { - g_free(applet->aid); - applet->aid = NULL; - } + g_free(applet->aid); + applet->aid = NULL; g_free(applet); } |