Minor code edits

darcs-hash:20060612205438-ac50b-4d7092740d5d35af3da06d0e6e99551d1cdfa123.gz
This commit is contained in:
axel 2006-06-13 06:54:38 +10:00
parent c60b62de73
commit 5d5ee87a59

View File

@ -749,7 +749,7 @@ wchar_t *parser_get_filename( void *context, const wchar_t *cmd )
/*
Allocate string long enough to hold the whole command
*/
wchar_t *new_cmd = malloc( sizeof(wchar_t)*(wcslen(cmd)+wcslen(path)+2) );
wchar_t *new_cmd = halloc( context, sizeof(wchar_t)*(wcslen(cmd)+wcslen(path)+2) );
/*
We tokenize a copy of the path, since strtok modifies
its arguments
@ -788,7 +788,6 @@ wchar_t *parser_get_filename( void *context, const wchar_t *cmd )
if( S_ISREG(buff.st_mode) )
{
free( path_cpy );
halloc_register( context, new_cmd );
return new_cmd;
}
}
@ -812,7 +811,6 @@ wchar_t *parser_get_filename( void *context, const wchar_t *cmd )
}
}
free( path_cpy );
free( new_cmd );
}
return 0;