Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
01eb9269
Commit
01eb9269
authored
Nov 03, 2008
by
Paul Bryan Roberts
Committed by
Alexandre Julliard
Nov 04, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Avoid potential infinite loop.
parent
9988ae35
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
om.c
dlls/ntdll/om.c
+3
-1
No files found.
dlls/ntdll/om.c
View file @
01eb9269
...
...
@@ -174,7 +174,7 @@ NtQuerySecurityObject(
PISECURITY_DESCRIPTOR_RELATIVE
psd
=
pSecurityDescriptor
;
NTSTATUS
status
;
unsigned
int
buffer_size
=
512
;
BOOLEAN
need_more_memory
=
FALSE
;
BOOLEAN
need_more_memory
;
TRACE
(
"(%p,0x%08x,%p,0x%08x,%p)
\n
"
,
Object
,
RequestedInformation
,
pSecurityDescriptor
,
Length
,
ResultLength
);
...
...
@@ -185,6 +185,8 @@ NtQuerySecurityObject(
if
(
!
buffer
)
return
STATUS_NO_MEMORY
;
need_more_memory
=
FALSE
;
SERVER_START_REQ
(
get_security_object
)
{
req
->
handle
=
Object
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment