From f9e7ff40dc75f95ee5a05fffd1718704594e32de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Mon, 1 Feb 2016 23:10:38 +0000 Subject: [PATCH] [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. svn path=/trunk/; revision=70674 --- reactos/lib/cmlib/cmkeydel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/lib/cmlib/cmkeydel.c b/reactos/lib/cmlib/cmkeydel.c index 6749185c85c..9d45dff6dab 100644 --- a/reactos/lib/cmlib/cmkeydel.c +++ b/reactos/lib/cmlib/cmkeydel.c @@ -215,7 +215,7 @@ CmpFreeKeyByCell(IN PHHIVE Hive, } /* 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;