index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Allan McRae <allan@archlinux.org> | 2020-04-13 17:39:35 +1000 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2020-04-13 23:44:46 +1000 |
commit | 0eda92c5d4f8810a68066ee72713ffdfa878dd8c (patch) | |
tree | f53a8c8730ef5833454b501eccedbfc0dd2e8c43 /lib/libalpm/handle.c | |
parent | 1b3289745334ec31507a12b6c54b2883a521543e (diff) |
-rw-r--r-- | lib/libalpm/handle.c | 2 |
diff --git a/lib/libalpm/handle.c b/lib/libalpm/handle.c index fc7c1faf..6b19a703 100644 --- a/lib/libalpm/handle.c +++ b/lib/libalpm/handle.c @@ -105,7 +105,7 @@ int _alpm_handle_lock(alpm_handle_t *handle) ASSERT(handle->lockfd < 0, return 0); /* create the dir of the lockfile first */ - dir = strdup(handle->lockfile); + STRDUP(dir, handle->lockfile, return -1); ptr = strrchr(dir, '/'); if(ptr) { *ptr = '\0'; |