From fb6fa0818fb603c516bc65196abe0aa0e4b90f15 Mon Sep 17 00:00:00 2001 From: Alexander Morozov Date: Wed, 23 Jun 2010 14:31:16 +0400 Subject: [eterwine 1/7] crypt32: Fix ExtraInfo initialization (eterbug #5665). --- dlls/crypt32/oid.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/dlls/crypt32/oid.c b/dlls/crypt32/oid.c index 7499f0a..b5facf2e 100644 --- a/dlls/crypt32/oid.c +++ b/dlls/crypt32/oid.c @@ -1546,6 +1546,7 @@ static void update_oid_info(void) } if (extra_size) { + info->info.ExtraInfo.cbData = extra_size; info->info.ExtraInfo.pbData = (BYTE *)((char *)(info + 1) + oid_size + name_size); if (RegQueryValueExW(hSubKey, wszExtraInfo, NULL, NULL, -- 1.7.7.3