init variables since compiler doesn't get __attribute__((noreturn))

This commit is contained in:
Love Hornquist Astrand
2009-08-20 14:05:06 -07:00
parent 1838afe680
commit f6da838557

View File

@@ -65,11 +65,11 @@ int
main(int argc, char **argv)
{
int encryptp = 1;
const char *ifn, *ofn;
const char *ifn = NULL, *ofn = NULL;
FILE *in, *out;
void *ibuf, *obuf;
int ilen, olen;
size_t block_size;
size_t block_size = 0;
const EVP_CIPHER *c = EVP_aes_128_cbc();
EVP_CIPHER_CTX ctx;
int ret;