Skip to content

Commit

Permalink
Fix bug in posix file/directory removal wrapper, as pointed out by kahrl
Browse files Browse the repository at this point in the history
  • Loading branch information
celeron55 committed Sep 6, 2011
1 parent b82952b commit bc847e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/filesys.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ bool RecursiveDelete(std::string path)
execv(argv[0], argv);

// Execv shouldn't return. Failed.
return false;
_exit(1);
}
else
{
Expand Down

0 comments on commit bc847e8

Please sign in to comment.