From e1816cc9a9ab7887dc2aa10b6244055546111049 Mon Sep 17 00:00:00 2001 From: adnano Date: Fri, 3 May 2024 19:31:11 -0400 Subject: wmenu-run: Don't overwrite PATH --- wmenu-run.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 { -- cgit v1.2.3