mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:43:31 +00:00
Small bug in FILE_InUse does not do a release on every acquired file
pointer.
This commit is contained in:
parent
4ef4d6d5ea
commit
1518a949cb
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue