Juan Lang : crypt32: Tiny fixes.
Module: wine Branch: refs/heads/master Commit: 04ed9c2a57b78f21f189e20b6d7798f0e00aa71b URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=04ed9c2a57b78f21f189e20b... Author: Juan Lang <juan_lang(a)yahoo.com> Date: Thu Mar 30 08:31:14 2006 -0800 crypt32: Tiny fixes. --- dlls/crypt32/proplist.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/crypt32/proplist.c b/dlls/crypt32/proplist.c index ec9e242..c030153 100644 --- a/dlls/crypt32/proplist.c +++ b/dlls/crypt32/proplist.c @@ -132,7 +132,6 @@ BOOL ContextPropertyList_SetProperty(PCO { prop->propID = id; prop->cbData = cbData; - list_init(&prop->entry); prop->pbData = data; list_add_tail(&list->properties, &prop->entry); ret = TRUE; @@ -158,6 +157,7 @@ void ContextPropertyList_RemoveProperty( list_remove(&prop->entry); CryptMemFree(prop->pbData); CryptMemFree(prop); + break; } } LeaveCriticalSection(&list->cs);
participants (1)
-
Alexandre Julliard