index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Aaron Griffin <aaron@archlinux.org> | 2006-10-31 06:39:59 +0000 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-10-31 06:39:59 +0000 |
commit | af2fb3324a925af6caa9d53aacac92173fc47885 (patch) | |
tree | b7abb647d27db75a1d937eea24cd5eccac6e5db8 /lib/libalpm/backup.c | |
parent | 78c0badc9b3629c5156d4bd0733a3e9a1e4e92c6 (diff) |
-rw-r--r-- | lib/libalpm/backup.c | 7 |
diff --git a/lib/libalpm/backup.c b/lib/libalpm/backup.c index 1c969835..cf29abf0 100644 --- a/lib/libalpm/backup.c +++ b/lib/libalpm/backup.c @@ -27,6 +27,7 @@ #include <string.h> /* pacman */ #include "backup.h" +#include "util.h" /* Look for a filename in a pmpkg_t.backup list. If we find it, * then we return the md5 or sha1 hash (parsed from the same line) @@ -47,7 +48,7 @@ char *_alpm_needbackup(char *file, pmlist_t *backup) /* tab delimiter */ ptr = strchr(str, '\t'); if(ptr == NULL) { - free(str); + FREE(str); continue; } *ptr = '\0'; @@ -55,10 +56,10 @@ char *_alpm_needbackup(char *file, pmlist_t *backup) /* now str points to the filename and ptr points to the md5 or sha1 hash */ if(!strcmp(file, str)) { char *md5 = strdup(ptr); - free(str); + FREE(str); return(md5); } - free(str); + FREE(str); } return(NULL); |