- Remove traces

svn path=/trunk/; revision=37979
This commit is contained in:
Stefan Ginsberg 2008-12-09 19:00:46 +00:00
parent e27a1b6f47
commit 2291d9b3b4
2 changed files with 0 additions and 4 deletions

View file

@ -1288,7 +1288,6 @@ ConvertStringSecurityDescriptorToSecurityDescriptorW(
if (SecurityDescriptorSize)
*SecurityDescriptorSize = relativeSdSize;
*SecurityDescriptor = relativeSd;
DbgPrint("ConvertStringSecurityDescriptorToSecurityDescriptorW: relativeSd: %p\n", relativeSd);
cleanup:
if (GetSecurityDescriptorOwner(sd, &pSid, &dummy))

View file

@ -52,7 +52,6 @@ LocalAlloc(UINT uFlags,
/* Allocate heap for it */
Ptr = RtlAllocateHeap(hProcessHeap, Flags, dwBytes);
BASE_TRACE_ALLOC2(Ptr);
if ((ULONG_PTR)Ptr == 0xC) DbgPrint("LocalAlloc: Ptr is 0xC\n");
return Ptr;
}
@ -132,12 +131,10 @@ Quickie:
}
/* Set the pointer */
if ((ULONG_PTR)hMemory == 0xC) DbgPrint("LocalAlloc: hMemory is 0xC\n");
Ptr = hMemory;
}
/* Return the pointer */
if ((ULONG_PTR)Ptr == 0xC) DbgPrint("LocalAlloc: Ptr is 0xC\n");
return Ptr;
}