Remove goto inside an if(0) block
There were a dozen-plus instances of this construct: if (0) { label: ..... } Reviewed-by: Tim Hudson <tjh@openssl.org>
This commit is contained in:
@@ -2838,13 +2838,11 @@ SSL *SSL_dup(SSL *s)
|
||||
}
|
||||
}
|
||||
}
|
||||
return ret;
|
||||
|
||||
if (0) {
|
||||
err:
|
||||
SSL_free(ret);
|
||||
ret = NULL;
|
||||
}
|
||||
return (ret);
|
||||
SSL_free(ret);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void ssl_clear_cipher_ctx(SSL *s)
|
||||
|
Reference in New Issue
Block a user