From 55f194236027112c8d491aa268b3911d5e54c608 Mon Sep 17 00:00:00 2001 From: Juan Lang Date: Tue, 9 Sep 2008 09:18:14 -0700 Subject: [PATCH] Assert condition that can occur only in case of a bug --- dlls/crypt32/context.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/dlls/crypt32/context.c b/dlls/crypt32/context.c index a5b749f..959d0c9 100644 --- a/dlls/crypt32/context.c +++ b/dlls/crypt32/context.c @@ -173,6 +173,7 @@ void Context_CopyProperties(const void * toProperties = Context_GetProperties((void *)to, contextSize); fromProperties = Context_GetProperties((void *)from, contextSize); + assert(toProperties && fromProperties); ContextPropertyList_Copy(toProperties, fromProperties); } -- 1.4.1