index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Rikard Falkeborn <rikard.falkeborn@gmail.com> | 2015-10-25 12:39:27 +0100 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2015-10-27 14:22:30 +1000 |
commit | 0c5dbdbfeca8a26d015230a8edd6d7c4c91d386a (patch) | |
tree | 6d4721bd0446586a6e8d7528edb3709ba8f2a054 /lib/libalpm/conflict.c | |
parent | 4c5bf09eec4835f8dfd300215f16289d106266d5 (diff) |
-rw-r--r-- | lib/libalpm/conflict.c | 2 |
diff --git a/lib/libalpm/conflict.c b/lib/libalpm/conflict.c index 0af3e3a8..41b8393c 100644 --- a/lib/libalpm/conflict.c +++ b/lib/libalpm/conflict.c @@ -68,6 +68,7 @@ error: */ void SYMEXPORT alpm_conflict_free(alpm_conflict_t *conflict) { + ASSERT(conflict != NULL, return); FREE(conflict->package2); FREE(conflict->package1); FREE(conflict); @@ -301,6 +302,7 @@ error: */ void SYMEXPORT alpm_fileconflict_free(alpm_fileconflict_t *conflict) { + ASSERT(conflict != NULL, return); FREE(conflict->ctarget); FREE(conflict->file); FREE(conflict->target); |