Author: hbelusca Date: Mon Feb 1 23:10:38 2016 New Revision: 70674
URL: http://svn.reactos.org/svn/reactos?rev=70674&view=rev Log: [CMLIB]: Demote the DPRINT1 saying that we leak the security block descriptor to a DPRINT. People (Alex & me) working on cmlib already know this. "Fixes" timeout problems of the testbots due to spamming this dprint.
Modified: trunk/reactos/lib/cmlib/cmkeydel.c
Modified: trunk/reactos/lib/cmlib/cmkeydel.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/cmlib/cmkeydel.c?rev=70... ============================================================================== --- trunk/reactos/lib/cmlib/cmkeydel.c [iso-8859-1] (original) +++ trunk/reactos/lib/cmlib/cmkeydel.c [iso-8859-1] Mon Feb 1 23:10:38 2016 @@ -215,7 +215,7 @@ }
/* FIXME: This leaks the security desriptor! */ - DPRINT1("Potentially leaking key security descriptor. Please call CmpFreeSecurityDescriptor\n"); + DPRINT("Potentially leaking key security descriptor. Please call CmpFreeSecurityDescriptor\n");
/* Free the key body itself, and then return our status */ if (!CmpFreeKeyBody(Hive, Cell)) return STATUS_INSUFFICIENT_RESOURCES;