From 71a602fd2782c95588bfc00619c092d627849c2e Mon Sep 17 00:00:00 2001 From: Juan RP Date: Thu, 29 Aug 2013 11:57:57 +0200 Subject: [PATCH] lib/archive.c: fixed memleaks in error paths; misc cleanups. --- lib/archive.c | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/lib/archive.c b/lib/archive.c index 4a7a9237..1b9e92f9 100644 --- a/lib/archive.c +++ b/lib/archive.c @@ -132,23 +132,24 @@ xbps_archive_get_dictionary(struct archive *ar, struct archive_entry *entry) /* If blob is already a dictionary we are done */ d = xbps_dictionary_internalize(buf); - if (xbps_object_type(d) == XBPS_TYPE_DICTIONARY) - goto out; + if (xbps_object_type(d) == XBPS_TYPE_DICTIONARY) { + free(buf); + return d; + } /* Try to uncompress blob */ uncomp_buf = uncompress_plist_data(buf, buflen); if (uncomp_buf == NULL) { /* Error while decompressing */ - free(buf); free(uncomp_buf); - return NULL; + xbps_object_release(d); + d = NULL; } else { /* We have the uncompressed data */ d = xbps_dictionary_internalize(uncomp_buf); free(uncomp_buf); } -out: free(buf); return d; } @@ -180,12 +181,14 @@ xbps_archive_append_buf(struct archive *ar, const void *buf, const size_t buflen archive_entry_set_mtime(entry, tm, 0); archive_entry_set_ctime(entry, tm, 0); - if (archive_write_header(ar, entry) != ARCHIVE_OK) + if (archive_write_header(ar, entry) != ARCHIVE_OK) { + archive_entry_free(entry); return archive_errno(ar); - - if (archive_write_data(ar, buf, buflen) != ARCHIVE_OK) + } + if (archive_write_data(ar, buf, buflen) != ARCHIVE_OK) { + archive_entry_free(entry); return archive_errno(ar); - + } archive_write_finish_entry(ar); archive_entry_free(entry);