Fix bug in posix file/directory removal wrapper, as pointed out by kahrl

This commit is contained in:
Perttu Ahola 2011-09-06 17:52:03 +03:00
parent b82952bdba
commit bc847e8cc2
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ bool RecursiveDelete(std::string path)
execv(argv[0], argv);
// Execv shouldn't return. Failed.
return false;
_exit(1);
}
else
{