Eet: remove dead variable assignment.
authorTom Hacohen <tom@stosb.com>
Wed, 18 Nov 2015 10:11:55 +0000 (10:11 +0000)
committerTom Hacohen <tom@stosb.com>
Wed, 18 Nov 2015 10:11:55 +0000 (10:11 +0000)
I guess this is what 2a01c4517b5b97c2b988ce590d7dae913ec1f085 was meant to be doing.

src/lib/eet/eet_cipher.c

index 9bff406..0f367ec 100644 (file)
@@ -236,9 +236,9 @@ on_error:
 
 # endif /* ifdef HAVE_GNUTLS */
 #else
-   certificate_file = NULL;
-   private_key_file = NULL;
-   cb = NULL;
+   (void) certificate_file;
+   (void) private_key_file;
+   (void) cb;
 #endif /* ifdef HAVE_SIGNATURE */
    return NULL;
 }