mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-09-13 09:17:20 -07:00
ntdll-FileDispositionInformation: Add braces around argument.
This commit is contained in:
parent
76f5985038
commit
f1045ce6bb
@ -49,7 +49,7 @@ index 5130b44..04891e7 100644
|
||||
+ LIST_FOR_EACH( ptr, &fd->inode->open )
|
||||
+ {
|
||||
+ struct fd *fd_ptr = LIST_ENTRY( ptr, struct fd, inode_entry );
|
||||
+ if (fd_ptr != fd && fd_ptr->access & FILE_MAPPING_ACCESS)
|
||||
+ if (fd_ptr != fd && (fd_ptr->access & FILE_MAPPING_ACCESS))
|
||||
+ {
|
||||
+ set_error( STATUS_CANNOT_DELETE );
|
||||
+ return;
|
||||
|
Loading…
Reference in New Issue
Block a user