diff options
author | Aurelien Foret <aurelien@archlinux.org> | 2005-04-24 23:36:30 +0200 |
---|---|---|
committer | Aurelien Foret <aurelien@archlinux.org> | 2005-04-24 23:36:30 +0200 |
commit | beda47fd22d204ba7f79ccab5251ed13c3faf82d (patch) | |
tree | f583cd91f88526561eda7373bc0a8b1e7cb02349 /lib/libalpm/sync.c | |
parent | a9540e2c7629bd7ecd7e98a562f77e33a289dba9 (diff) | |
download | pacman-beda47fd22d204ba7f79ccab5251ed13c3faf82d.tar.gz pacman-beda47fd22d204ba7f79ccab5251ed13c3faf82d.tar.xz |
code cleanup
Diffstat (limited to 'lib/libalpm/sync.c')
-rw-r--r-- | lib/libalpm/sync.c | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/lib/libalpm/sync.c b/lib/libalpm/sync.c index 8d6ee1d0..113fec9d 100644 --- a/lib/libalpm/sync.c +++ b/lib/libalpm/sync.c @@ -63,14 +63,16 @@ pmsyncpkg_t *sync_new(int type, pmpkg_t *spkg, void *data) void sync_free(pmsyncpkg_t *sync) { - if(sync) { - if(sync->type == PM_SYNC_TYPE_REPLACE) { - FREELISTPKGS(sync->data); - } else { - FREEPKG(sync->data); - } - free(sync); + if(sync == NULL) { + return; + } + + if(sync->type == PM_SYNC_TYPE_REPLACE) { + FREELISTPKGS(sync->data); + } else { + FREEPKG(sync->data); } + free(sync); } /* Test for existance of a package in a PMList* of pmsyncpkg_t* |