rsabase.dll: changed type of "Signature" registry key value to REG_BINARY

Michael Jung mjung at iss.tu-darmstadt.de
Thu Jun 24 08:50:21 CDT 2004


Hello,

rsabase.dll sets the type of it's "Signature" registry key value to REG_DWORD. Should be REG_BINARY.

Changelog:
    Michael Jung <mjung at rbg.informatik.tu-darmstadt.de>
    Changed type of "Signature" registry key value to REG_BINARY    


? patch.diff
Index: dlls/rsabase/main.c
===================================================================
RCS file: /home/wine/wine/dlls/rsabase/main.c,v
retrieving revision 1.6
diff -u -r1.6 main.c
--- dlls/rsabase/main.c 16 Jun 2004 19:03:06 -0000  1.6
+++ dlls/rsabase/main.c 24 Jun 2004 11:51:47 -0000
@@ -325,7 +325,7 @@
             DWORD sign = 0xdeadbeef;
             RegSetValueExW(key, szImagePath, 0, REG_SZ, (LPBYTE)szRSABase, (lstrlenW(szRSABase) + 1) * sizeof(WCHAR));
             RegSetValueExW(key, szType, 0, REG_DWORD, (LPBYTE)&type, sizeof(type));
-            RegSetValueExW(key, szSignature, 0, REG_DWORD, (LPBYTE)&sign, sizeof(sign));
+            RegSetValueExW(key, szSignature, 0, REG_BINARY, (LPBYTE)&sign, sizeof(sign));
         }
         RegCloseKey(key);
     }





More information about the wine-patches mailing list