weston-launch: Only pass non-NULL value into setenv()
getenv() can return NULL is the key is not set, passing NULL into setenv() is an error
This commit is contained in:
committed by
Kristian Høgsberg
parent
14c9892069
commit
7ac9f73c7d
@@ -515,6 +515,7 @@ setup_session(struct weston_launch *wl)
|
||||
|
||||
term = getenv("TERM");
|
||||
clearenv();
|
||||
if (term)
|
||||
setenv("TERM", term, 1);
|
||||
setenv("USER", wl->pw->pw_name, 1);
|
||||
setenv("LOGNAME", wl->pw->pw_name, 1);
|
||||
|
||||
Reference in New Issue
Block a user