Verify PATH variable in apps/examples/elf

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5445 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2012-12-19 22:18:30 +00:00
parent d6f761430c
commit 2545f5c1a9
8 changed files with 68 additions and 22 deletions
+3 -3
View File
@@ -146,11 +146,11 @@ int load_module(FAR struct binary_s *bin)
#endif
{
/* Were we given a relative path? Or an absolute path to the file to
* be loaded.
* be loaded? Absolute paths start with '/'.
*/
#ifdef CONFIG_BINFMT_EXEPATH
if (bin->filename[0] == '/')
if (bin->filename[0] != '/')
{
FAR const char *relpath;
FAR char *fullpath;
@@ -168,7 +168,7 @@ int load_module(FAR struct binary_s *bin)
{
/* Get the next absolute file path */
while ((fullpath = exepath_next(handle, relpath)))
while ((fullpath = exepath_next(handle, relpath)) != NULL)
{
/* Try to load the file at this path */