Dozens of hours of debugging, yet only 1 character of changed code. 😩
This commit is contained in:
parent
cf475a7c07
commit
5c8e91b07b
1 changed files with 1 additions and 1 deletions
|
@ -330,7 +330,7 @@ namespace IPC{
|
|||
}
|
||||
return;
|
||||
}
|
||||
if (handle > 0 && handle < 3){
|
||||
if (handle >= 0 && handle < 3){
|
||||
int tmpHandle = fcntl(handle, F_DUPFD, 3);
|
||||
if (tmpHandle >= 3){
|
||||
DONTEVEN_MSG("Remapped handle for page %s from %d to %d!", name.c_str(), handle, tmpHandle);
|
||||
|
|
Loading…
Add table
Reference in a new issue