Commit 1518a949 authored by Rein Klazes's avatar Rein Klazes Committed by Alexandre Julliard

Small bug in FILE_InUse does not do a release on every acquired file

pointer.
parent 4ef4d6d5
......@@ -476,8 +476,8 @@ static BOOL32 FILE_InUse(char * name, int * mode)
FILE_ReleaseFile(file);
return TRUE;
}
FILE_ReleaseFile(file);
}
FILE_ReleaseFile(file);
}
}
return FALSE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment