Skip to content
Snippets Groups Projects
Commit 0db4e8bd authored by rswindell's avatar rswindell
Browse files

Now checks malloc return value for NULL.

parent 13f14a8e
No related branches found
No related tags found
No related merge requests found
......@@ -289,6 +289,11 @@ char* _fullpath(char* absPath, const char* relPath, size_t maxLength)
{
char *curdir = (char *) malloc(PATH_MAX+1);
if(curdir == NULL) {
strcpy(absPath,relPath);
return(absPath);
}
getcwd(curdir, PATH_MAX);
chdir(relPath);
getcwd(absPath, maxLength);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment