Eet: remove dead variable assignment.

I guess this is what 2a01c4517b was meant to be doing.
This commit is contained in:
Tom Hacohen 2015-11-18 10:11:55 +00:00
parent 2892e54d88
commit 1f881c859a
1 changed files with 3 additions and 3 deletions

View 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;
}