mirror of
https://github.com/sheumann/hush.git
synced 2024-12-21 23:29:34 +00:00
awk: guard against empty environment
This commit is contained in:
parent
e725bfe6e0
commit
f71d916b60
@ -2696,7 +2696,8 @@ int awk_main(int argc, char **argv)
|
||||
newfile("/dev/stdout")->F = stdout;
|
||||
newfile("/dev/stderr")->F = stderr;
|
||||
|
||||
for (envp = environ; *envp; envp++) {
|
||||
/* Huh, people report that sometimes environ is NULL. Oh well. */
|
||||
if (environ) for (envp = environ; *envp; envp++) {
|
||||
char *s = xstrdup(*envp);
|
||||
char *s1 = strchr(s, '=');
|
||||
if (s1) {
|
||||
|
Loading…
Reference in New Issue
Block a user