summaryrefslogtreecommitdiffabout
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--cache.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/cache.c b/cache.c
index b947a34..39e63a5 100644
--- a/cache.c
+++ b/cache.c
@@ -76,3 +76,3 @@ int cache_lock(struct cacheitem *item)
int i = 0;
- char *lockfile = fmt("%s.lock", item->name);
+ char *lockfile = xstrdup(fmt("%s.lock", item->name));
@@ -92,2 +92,3 @@ int cache_lock(struct cacheitem *item)
+ free(lockfile);
return (item->fd > 0);