From e0ac8691be1031a28c020c30821c7985f7aafb42 Mon Sep 17 00:00:00 2001 From: Sylvain Petreolle Date: Sun, 31 Jan 2016 17:42:05 +0000 Subject: [PATCH] cmlib: Fix debug string becoming too big for testbot (doesn't fix successful-but-canceled ntdll:NtDeleteKey) Alex, do we have an actual free-security-descriptor function ? svn path=/trunk/; revision=70668 --- 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 82cfaf5c7ae..6749185c85c 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"); + DPRINT1("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;