[PATCH] dssenh/tests: Avoid separation for the same assignment expression.

Andrey Gusev andrey.goosev at gmail.com
Thu Jul 12 07:15:31 CDT 2018


Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
---
 dlls/dssenh/tests/dssenh.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dlls/dssenh/tests/dssenh.c b/dlls/dssenh/tests/dssenh.c
index b62f592f5f..6b606fb716 100644
--- a/dlls/dssenh/tests/dssenh.c
+++ b/dlls/dssenh/tests/dssenh.c
@@ -852,8 +852,7 @@ static void test_signhash_array(HCRYPTPROV hProv, const struct signature_test *t
 
     for (i = 0; i < testLen; i++)
     {
-        DWORD signLen1 = tests[i].dataLen;
-        DWORD signLen2 = tests[i].dataLen;
+        DWORD signLen1, signLen2 = tests[i].dataLen;
 
         /* Get a private key of array specified ALG_ID */
         result = CryptImportKey(hProv, tests[i].privateKey, tests[i].keyLen, 0, 0, &privKey);
-- 
2.17.1




More information about the wine-devel mailing list