Author: akhaldi
Date: Sun Sep 17 12:33:29 2017
New Revision: 75865

URL: http://svn.reactos.org/svn/reactos?rev=75865&view=rev
Log:
[CRYPT32] Sync with Wine Staging 2.16. CORE-13762

8738b03 crypt32: Increase buffer size to silence a gcc warning.

Modified:
    trunk/reactos/dll/win32/crypt32/encode.c
    trunk/reactos/media/doc/README.WINE

Modified: trunk/reactos/dll/win32/crypt32/encode.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/crypt32/encode.c?rev=75865&r1=75864&r2=75865&view=diff
==============================================================================
--- trunk/reactos/dll/win32/crypt32/encode.c    [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/crypt32/encode.c    [iso-8859-1] Sun Sep 17 
12:33:29 2017
@@ -3517,11 +3517,11 @@
     __TRY
     {
         SYSTEMTIME sysTime;
-        /* sorry, magic number: enough for tag, len, YYMMDDHHMMSSZ\0.  I use a
+        /* sorry, magic number: enough for tag, len, YYMMDDHHMMSSZ.  I use a
          * temporary buffer because the output buffer is not NULL-terminated.
          */
-        char buf[16];
-        static const DWORD bytesNeeded = sizeof(buf) - 1;
+        static const DWORD bytesNeeded = 15;
+        char buf[40];
 
         if (!pbEncoded)
         {
@@ -3574,11 +3574,11 @@
     __TRY
     {
         SYSTEMTIME sysTime;
-        /* sorry, magic number: enough for tag, len, YYYYMMDDHHMMSSZ\0.  I use 
a
+        /* sorry, magic number: enough for tag, len, YYYYMMDDHHMMSSZ.  I use a
          * temporary buffer because the output buffer is not NULL-terminated.
          */
-        char buf[18];
-        static const DWORD bytesNeeded = sizeof(buf) - 1;
+        static const DWORD bytesNeeded = 17;
+        char buf[40];
 
         if (!pbEncoded)
         {

Modified: trunk/reactos/media/doc/README.WINE
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/media/doc/README.WINE?rev=75865&r1=75864&r2=75865&view=diff
==============================================================================
--- trunk/reactos/media/doc/README.WINE [iso-8859-1] (original)
+++ trunk/reactos/media/doc/README.WINE [iso-8859-1] Sun Sep 17 12:33:29 2017
@@ -58,7 +58,7 @@
 reactos/dll/win32/comdlg32            # Synced to WineStaging-2.16
 reactos/dll/win32/compstui            # Synced to WineStaging-2.9
 reactos/dll/win32/credui              # Synced to WineStaging-2.9
-reactos/dll/win32/crypt32             # Synced to WineStaging-2.9
+reactos/dll/win32/crypt32             # Synced to WineStaging-2.16
 reactos/dll/win32/cryptdlg            # Synced to WineStaging-2.9
 reactos/dll/win32/cryptdll            # Synced to WineStaging-2.9
 reactos/dll/win32/cryptnet            # Synced to WineStaging-2.9


Reply via email to