summaryrefslogtreecommitdiffstats
path: root/libcacard/vcard.c
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2014-06-06 18:32:08 +0200
committerMichael Tokarev <mjt@tls.msk.ru>2014-06-10 19:39:34 +0400
commitec15993d9d7ea7108101f068c9929a62be29dc67 (patch)
treeb959195b260146cb5416f4123ffb8506a5a6a053 /libcacard/vcard.c
parent6b1dd54b6a4652a3a1e15a4beacd3be554a9ade1 (diff)
downloadhqemu-ec15993d9d7ea7108101f068c9929a62be29dc67.zip
hqemu-ec15993d9d7ea7108101f068c9929a62be29dc67.tar.gz
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.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/libcacard/vcard.c b/libcacard/vcard.c
index 6aaf085..bf342aa 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);
}
OpenPOWER on IntegriCloud