From 32ebd7ad5d0c96951065ef251f1766637ae5dd66 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Sun, 21 Dec 2014 23:48:48 +1000 Subject: depmiss_new: free memory on error Signed-off-by: Allan McRae --- lib/libalpm/deps.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'lib/libalpm/deps.c') diff --git a/lib/libalpm/deps.c b/lib/libalpm/deps.c index f2ee8f41..ca36270d 100644 --- a/lib/libalpm/deps.c +++ b/lib/libalpm/deps.c @@ -50,11 +50,15 @@ static alpm_depmissing_t *depmiss_new(const char *target, alpm_depend_t *dep, MALLOC(miss, sizeof(alpm_depmissing_t), return NULL); - STRDUP(miss->target, target, return NULL); + STRDUP(miss->target, target, goto error); miss->depend = _alpm_dep_dup(dep); - STRDUP(miss->causingpkg, causingpkg, return NULL); + STRDUP(miss->causingpkg, causingpkg, goto error); return miss; + +error: + alpm_depmissing_free(miss); + return NULL; } void SYMEXPORT alpm_depmissing_free(alpm_depmissing_t *miss) -- cgit v1.2.3-24-g4f1b