Author: akhaldi
Date: Mon Jul 20 22:54:41 2015
New Revision: 68497
URL:
http://svn.reactos.org/svn/reactos?rev=68497&view=rev
Log:
[RSAENH] Sync with Wine Staging 1.7.47. CORE-9924
Modified:
trunk/reactos/dll/win32/rsaenh/mpi.c
trunk/reactos/media/doc/README.WINE
Modified: trunk/reactos/dll/win32/rsaenh/mpi.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/rsaenh/mpi.c?rev…
==============================================================================
--- trunk/reactos/dll/win32/rsaenh/mpi.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/rsaenh/mpi.c [iso-8859-1] Mon Jul 20 22:54:41 2015
@@ -1783,7 +1783,7 @@
}
/* power of two ? */
- if (s_is_power_of_two(b, &ix) == 1) {
+ if (s_is_power_of_two(b, &ix)) {
if (d != NULL) {
*d = a->dp[0] & ((((mp_digit)1)<<ix) - 1);
}
@@ -1955,8 +1955,8 @@
dr = 0;
- /* if the modulus is odd or dr != 0 use the fast method */
- if (mp_isodd (P) == 1 || dr != 0) {
+ /* if the modulus is odd use the fast method */
+ if (mp_isodd (P) == 1) {
return mp_exptmod_fast (G, X, P, Y, dr);
} else {
/* otherwise use the generic Barrett reduction technique */
Modified: trunk/reactos/media/doc/README.WINE
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/media/doc/README.WINE?rev=…
==============================================================================
--- trunk/reactos/media/doc/README.WINE [iso-8859-1] (original)
+++ trunk/reactos/media/doc/README.WINE [iso-8859-1] Mon Jul 20 22:54:41 2015
@@ -168,7 +168,7 @@
reactos/dll/win32/riched32 # Synced to WineStaging-1.7.37
reactos/dll/win32/rpcrt4 # Synced to Wine-1.7.17
reactos/dll/win32/rsabase # Synced to WineStaging-1.7.37
-reactos/dll/win32/rsaenh # Synced to WineStaging-1.7.37
+reactos/dll/win32/rsaenh # Synced to WineStaging-1.7.47
reactos/dll/win32/sccbase # Synced to WineStaging-1.7.37
reactos/dll/win32/schannel # Synced to WineStaging-1.7.37
reactos/dll/win32/scrrun # Synced to WineStaging-1.7.37