Fixed possible problem in the secure browser launcher.

This commit is contained in:
n-a-c-h
2005-09-02 13:18:13 +00:00
parent f8088ce1e8
commit 0231ca6ac2

View File

@@ -1295,7 +1295,7 @@ pid_t spc_fork() {
*/
if (!spc_drop_privileges()) //Failed to drop special privleges
{
exit(0);
_exit(0);
}
return 0;
@@ -1325,6 +1325,6 @@ void ZsnesPage()
LaunchBrowser("lynx");
LaunchBrowser("links");
exit(0); //All browser launches failed, oh well
_exit(0); //All browser launches failed, oh well
}