nshlib/nsh_fileapps.c: Pass global environ instead of NULL for posix_spawnp

Now that the environ pointer is a list of pointers-to-string, it can be
passed to the standard posix_spawn function as-is.
This commit is contained in:
Ville Juven 2022-04-21 11:22:44 +03:00 committed by Xiang Xiao
parent 9f79bf183a
commit 0957a740cb

@ -30,6 +30,7 @@
#endif
#include <stdbool.h>
#include <stdlib.h>
#include <spawn.h>
#include <errno.h>
#include <string.h>
@ -126,7 +127,7 @@ int nsh_fileapp(FAR struct nsh_vtbl_s *vtbl, FAR const char *cmd,
* failure.
*/
ret = posix_spawnp(&pid, cmd, &file_actions, &attr, argv, NULL);
ret = posix_spawnp(&pid, cmd, &file_actions, &attr, argv, environ);
if (ret == OK)
{
/* The application was successfully started with pre-emption disabled.