tasn pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=1f881c859a684941f98a8b91a0d7ca0626cd6faf

commit 1f881c859a684941f98a8b91a0d7ca0626cd6faf
Author: Tom Hacohen <t...@stosb.com>
Date:   Wed Nov 18 10:11:55 2015 +0000

    Eet: remove dead variable assignment.
    
    I guess this is what 2a01c4517b5b97c2b988ce590d7dae913ec1f085 was meant to 
be doing.
---
 src/lib/eet/eet_cipher.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/lib/eet/eet_cipher.c b/src/lib/eet/eet_cipher.c
index 9bff406..0f367ec 100644
--- a/src/lib/eet/eet_cipher.c
+++ b/src/lib/eet/eet_cipher.c
@@ -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;
 }

-- 


Reply via email to