diff options
-rw-r--r-- | browse.c | 1 | ||||
-rw-r--r-- | file.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -234,6 +234,7 @@ file_template_callback(size_t index, void *arg) break; } K_OK(khtml_puts(html, basename), r); + free(basename); break; case 2: /* url */ @@ -138,7 +138,7 @@ file_get_basename(const struct file * f) /* is the path a basename itself? */ if (strrchr(f->path, '/') == NULL) - return f->path; + return strdup(f->path); /* get the basename */ return str_tail(f->path, '/'); |