commit | f9ea4deba006ee45a61e5f406f12c936b9bc162e | [log] [tgz] |
---|---|---|
author | Matt Caswell <matt@openssl.org> | Thu Nov 27 20:32:21 2014 +0000 |
committer | Matt Caswell <matt@openssl.org> | Thu Nov 27 21:41:17 2014 +0000 |
tree | d9427ba30450a4c2695f42791549460bef8e0f39 | |
parent | eceef8fb865eb5de329b27ea472d4fdea4c290fe [diff] |
Fix warning in ssl2_enc Reviewed-by: Richard Levitte <levitte@openssl.org>
diff --git a/ssl/s2_enc.c b/ssl/s2_enc.c index 95d6eef..329006a 100644 --- a/ssl/s2_enc.c +++ b/ssl/s2_enc.c
@@ -137,7 +137,7 @@ } /* check for NULL cipher */ - if (ds == NULL) return; + if (ds == NULL) return 1; bs=ds->cipher->block_size;