From aa4ef719cc769ec331f741b0742c3f9028b33dd5 Mon Sep 17 00:00:00 2001 From: J Harper Date: Tue, 19 Jul 2016 22:38:37 -0700 Subject: [PATCH] coverity change for unused assignment --- crypto/test/algorithmTest.c | 1 - 1 file changed, 1 deletion(-) diff --git a/crypto/test/algorithmTest.c b/crypto/test/algorithmTest.c index e854d97..be2091d 100644 --- a/crypto/test/algorithmTest.c +++ b/crypto/test/algorithmTest.c @@ -804,7 +804,6 @@ int32 psAesTestGCM(void) if ((memcmp(ciphertext, tests[i].ct, tests[i].ptlen) != 0) || (memcmp(tag, tests[i].tag, 16) != 0)) { printf("FAILED: memcmp mismatch\n"); - res = PS_FAILURE; } else { printf("PASSED\n"); }