Juan Lang : crypt32: Pass flags to enumeration callback.

Alexandre Julliard julliard at winehq.org
Thu Oct 23 08:38:08 CDT 2008


Module: wine
Branch: master
Commit: 5a5129b42e46e1a90c11fbb2149e4ac6f3c1850e
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=5a5129b42e46e1a90c11fbb2149e4ac6f3c1850e

Author: Juan Lang <juan.lang at gmail.com>
Date:   Wed Oct 22 13:21:20 2008 -0700

crypt32: Pass flags to enumeration callback.

---

 dlls/crypt32/store.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/crypt32/store.c b/dlls/crypt32/store.c
index 6d9177e..391a95e 100644
--- a/dlls/crypt32/store.c
+++ b/dlls/crypt32/store.c
@@ -1321,7 +1321,7 @@ BOOL WINAPI CertEnumSystemStore(DWORD dwFlags, void *pvSystemStoreLocationPara,
             rc = RegEnumKeyExW(key, index++, name, &size, NULL, NULL, NULL,
                 NULL);
             if (!rc)
-                ret = pfnEnum(name, 0, &info, NULL, pvArg);
+                ret = pfnEnum(name, dwFlags, &info, NULL, pvArg);
         } while (ret && !rc);
         if (ret && rc != ERROR_NO_MORE_ITEMS)
             SetLastError(rc);




More information about the wine-cvs mailing list