diff options
Diffstat (limited to 'wmenu-run.c')
-rw-r--r-- | wmenu-run.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/wmenu-run.c b/wmenu-run.c index cbc35a1..228edc4 100644 --- a/wmenu-run.c +++ b/wmenu-run.c @@ -10,7 +10,7 @@ #include "xdg-activation-v1-client-protocol.h" static void read_items(struct menu *menu) { - char *path = getenv("PATH"); + char *path = strdup(getenv("PATH")); for (char *p = strtok(path, ":"); p != NULL; p = strtok(NULL, ":")) { DIR *dir = opendir(p); if (dir == NULL) { @@ -24,6 +24,7 @@ static void read_items(struct menu *menu) { } closedir(dir); } + free(path); } struct executable { |