index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | src/pacman/query.c | 3 |
diff --git a/src/pacman/query.c b/src/pacman/query.c index 8a01d829..42e163ef 100644 --- a/src/pacman/query.c +++ b/src/pacman/query.c @@ -47,18 +47,17 @@ static char *resolve_path(const char* file) str = calloc(PATH_MAX+1, sizeof(char)); if(!str) { - /* null hmmm.... */ return(NULL); } if(!realpath(file, str)) { + free(str); return(NULL); } return(str); } - static int query_fileowner(alpm_list_t *targets) { int ret = 0; |