environ #15

Merged
cromer merged 27 commits from environ into master 2021-07-17 22:15:24 -04:00
Showing only changes of commit b1dc92ba92 - Show all commits

View File

@ -51,7 +51,10 @@ void loop() {
atexit(exit_cleanup);
char *cwd = get_working_directory();
set_array_list(variables, "PWD", cwd);
if (cwd != NULL) {
free(cwd);
cwd = NULL;
}
while (1) {
print_input_line();