Merge pull request #1926 from RyanDwyer/fix-setenv-path

Fix PATH setenv() in exec_always
master
emersion 7 years ago committed by GitHub
commit 72ce50737d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -82,7 +82,7 @@ struct cmd_results *cmd_exec_always(int argc, char **argv) {
// Append /usr/lib/sway to PATH
strcat(path, extra_path);
if (!setenv("PATH", path, 1)) {
if (setenv("PATH", path, 1) == -1) {
free(path);
wlr_log(L_ERROR, "exec_always: Unable to set PATH");
exit(EXIT_FAILURE);

Loading…
Cancel
Save