From abbb2cfcf045a8f309a233030154b6316be813de Mon Sep 17 00:00:00 2001 From: Aurelien Foret Date: Sun, 24 Apr 2005 18:58:34 +0000 Subject: code cleanup --- lib/libalpm/alpm.c | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'lib') diff --git a/lib/libalpm/alpm.c b/lib/libalpm/alpm.c index bf73d649..8f5a1649 100644 --- a/lib/libalpm/alpm.c +++ b/lib/libalpm/alpm.c @@ -68,6 +68,9 @@ int alpm_initialize(char *root) ASSERT(handle == NULL, RET_ERR(PM_ERR_HANDLE_NOT_NULL, -1)); handle = handle_new(); + if(handle == NULL) { + RET_ERR(PM_ERR_MEM_ERROR, -1); + } /* lock db */ if(handle->access == PM_ACCESS_RW) { @@ -440,9 +443,6 @@ int alpm_pkg_load(char *filename, pmpkg_t **pkg) void alpm_pkg_free(pmpkg_t *pkg) { - if(pkg == NULL) { - return; - } pkg_free(pkg); } @@ -699,11 +699,7 @@ void *alpm_list_getdata(PMList *entry) int alpm_list_free(PMList *entry) { - if(entry) { - /* ORE - does not free all memory for packages... */ - FREELIST(entry); - } + FREELIST(entry); return(0); } -- cgit v1.2.3-24-g4f1b