From: Dane (4cad@silvertoque) Date: Wed, 19 Feb 2020 02:38:12 +0000 (-0500) Subject: Remove unneeded switch statement to fix warning X-Git-Tag: openssl-3.0.0-alpha1~414 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1f2235ea4e48a48f0c06406c22c8ae31a6ccaae6;hp=cc0663f697b05ed121a728241f0502250429802d;p=oweals%2Fopenssl.git Remove unneeded switch statement to fix warning https://github.com/openssl/openssl/issues/10958 CLA: trivial Reviewed-by: Richard Levitte Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/11125) --- diff --git a/crypto/evp/bio_b64.c b/crypto/evp/bio_b64.c index aef9a85459..5f9d3f094b 100644 --- a/crypto/evp/bio_b64.c +++ b/crypto/evp/bio_b64.c @@ -534,17 +534,12 @@ static long b64_ctrl(BIO *b, int cmd, long num, void *ptr) static long b64_callback_ctrl(BIO *b, int cmd, BIO_info_cb *fp) { - long ret = 1; BIO *next = BIO_next(b); if (next == NULL) return 0; - switch (cmd) { - default: - ret = BIO_callback_ctrl(next, cmd, fp); - break; - } - return ret; + + return BIO_callback_ctrl(next, cmd, fp); } static int b64_puts(BIO *b, const char *str) diff --git a/crypto/evp/bio_enc.c b/crypto/evp/bio_enc.c index 9fa10ebff6..e780135b3d 100644 --- a/crypto/evp/bio_enc.c +++ b/crypto/evp/bio_enc.c @@ -388,17 +388,12 @@ static long enc_ctrl(BIO *b, int cmd, long num, void *ptr) static long enc_callback_ctrl(BIO *b, int cmd, BIO_info_cb *fp) { - long ret = 1; BIO *next = BIO_next(b); if (next == NULL) return 0; - switch (cmd) { - default: - ret = BIO_callback_ctrl(next, cmd, fp); - break; - } - return ret; + + return BIO_callback_ctrl(next, cmd, fp); } int BIO_set_cipher(BIO *b, const EVP_CIPHER *c, const unsigned char *k, diff --git a/crypto/evp/bio_md.c b/crypto/evp/bio_md.c index aca177e9da..dbc9f395d0 100644 --- a/crypto/evp/bio_md.c +++ b/crypto/evp/bio_md.c @@ -197,7 +197,6 @@ static long md_ctrl(BIO *b, int cmd, long num, void *ptr) static long md_callback_ctrl(BIO *b, int cmd, BIO_info_cb *fp) { - long ret = 1; BIO *next; next = BIO_next(b); @@ -205,12 +204,7 @@ static long md_callback_ctrl(BIO *b, int cmd, BIO_info_cb *fp) if (next == NULL) return 0; - switch (cmd) { - default: - ret = BIO_callback_ctrl(next, cmd, fp); - break; - } - return ret; + return BIO_callback_ctrl(next, cmd, fp); } static int md_gets(BIO *bp, char *buf, int size) diff --git a/crypto/evp/bio_ok.c b/crypto/evp/bio_ok.c index f94882829b..9129fe038e 100644 --- a/crypto/evp/bio_ok.c +++ b/crypto/evp/bio_ok.c @@ -406,7 +406,6 @@ static long ok_ctrl(BIO *b, int cmd, long num, void *ptr) static long ok_callback_ctrl(BIO *b, int cmd, BIO_info_cb *fp) { - long ret = 1; BIO *next; next = BIO_next(b); @@ -414,13 +413,7 @@ static long ok_callback_ctrl(BIO *b, int cmd, BIO_info_cb *fp) if (next == NULL) return 0; - switch (cmd) { - default: - ret = BIO_callback_ctrl(next, cmd, fp); - break; - } - - return ret; + return BIO_callback_ctrl(next, cmd, fp); } static void longswap(void *_ptr, size_t len)