Module: wine Branch: master Commit: 01eb926987e8c2fd461bf6881137eb4a3f8d621a URL: http://source.winehq.org/git/wine.git/?a=commit;h=01eb926987e8c2fd461bf68811...
Author: Paul Bryan Roberts pbronline-wine@yahoo.co.uk Date: Mon Nov 3 22:42:42 2008 +0000
ntdll: Avoid potential infinite loop.
---
dlls/ntdll/om.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/dlls/ntdll/om.c b/dlls/ntdll/om.c index bc2ee97..aba2301 100644 --- a/dlls/ntdll/om.c +++ b/dlls/ntdll/om.c @@ -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;