Skip to content

Commit 6714cb1

Browse files
author
Rich Salz
committed
Remove some code
This commit removes the contribution of a user that we cannot trace to gain their consent for the licence change. I also cleaned up the return/error-return flow a bit. Reviewed-by: Matt Caswell <[email protected]> Reviewed-by: Bernd Edlinger <[email protected]> (Merged from #5811)
1 parent a73d990 commit 6714cb1

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

crypto/pem/pem_lib.c

+7-6
Original file line numberDiff line numberDiff line change
@@ -610,6 +610,7 @@ int PEM_write_bio(BIO *bp, const char *name, const char *header,
610610
unsigned char *buf = NULL;
611611
EVP_ENCODE_CTX *ctx = EVP_ENCODE_CTX_new();
612612
int reason = ERR_R_BUF_LIB;
613+
int retval = 0;
613614

614615
if (ctx == NULL) {
615616
reason = ERR_R_MALLOC_FAILURE;
@@ -654,14 +655,14 @@ int PEM_write_bio(BIO *bp, const char *name, const char *header,
654655
(BIO_write(bp, name, nlen) != nlen) ||
655656
(BIO_write(bp, "-----\n", 6) != 6))
656657
goto err;
657-
OPENSSL_clear_free(buf, PEM_BUFSIZE * 8);
658-
EVP_ENCODE_CTX_free(ctx);
659-
return i + outl;
658+
retval = i + outl;
659+
660660
err:
661-
OPENSSL_clear_free(buf, PEM_BUFSIZE * 8);
661+
if (retval == 0)
662+
PEMerr(PEM_F_PEM_WRITE_BIO, reason);
662663
EVP_ENCODE_CTX_free(ctx);
663-
PEMerr(PEM_F_PEM_WRITE_BIO, reason);
664-
return 0;
664+
OPENSSL_free(buf);
665+
return retval;
665666
}
666667

667668
#ifndef OPENSSL_NO_STDIO

0 commit comments

Comments
 (0)