Fix problem with initialization of file actions

git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5508 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2013-01-10 23:06:23 +00:00
parent f011bd7ef6
commit 7609c9a192
2 changed files with 5 additions and 1 deletions

View File

@ -304,6 +304,8 @@ int spawn_main(int argc, char *argv[])
err("ERROR: posix_spawnattr_init failed: %d\n", ret);
}
mm_update(&g_mmstep, "after file_action/attr init");
/* Set up to close stdin (0) and open testdata.txt as the program input */
ret = posix_spawn_file_actions_addclose(&file_actions, 0);
@ -319,6 +321,8 @@ int spawn_main(int argc, char *argv[])
err("ERROR: posix_spawn_file_actions_addopen failed: %d\n", ret);
}
mm_update(&g_mmstep, "after adding file_actions");
/* If the binary loader does not support the PATH variable, then
* create the full path to the executable program. Otherwise,
* use the relative path so that the binary loader will have to

View File

@ -65,6 +65,6 @@
int posix_spawn_file_actions_init(FAR posix_spawn_file_actions_t *file_actions)
{
file_actions = NULL;
*file_actions = NULL;
return OK;
}