add error handler in dlopen.c

This commit is contained in:
shaolin 2013-04-10 21:40:08 +08:00
parent 06c6630bbf
commit 83751c63e3
1 changed files with 6 additions and 1 deletions

View File

@ -35,7 +35,12 @@ void* dlopen(const char *filename, int flags)
rt_snprintf(fullpath, strlen(def_path) + strlen(filename) + 2, rt_snprintf(fullpath, strlen(def_path) + strlen(filename) + 2,
"%s/%s", def_path, filename); "%s/%s", def_path, filename);
} }
else
{
rt_kprintf("use absolute path\n");
return RT_NULL;
}
/* find in module list */ /* find in module list */
module = rt_module_find(fullpath); module = rt_module_find(fullpath);