diff options
author | jsing <> | 2019-08-11 14:19:09 +0000 |
---|---|---|
committer | jsing <> | 2019-08-11 14:19:09 +0000 |
commit | 44c4c19d37de905fca6ed2bcce92dc0d8b19ea22 (patch) | |
tree | 2a8b7b65bb4612843a55d3cbfaac7dc2e9ab6ca9 | |
parent | 66b8eee1f4c16577aa18b418806e6d168950262b (diff) | |
download | openbsd-44c4c19d37de905fca6ed2bcce92dc0d8b19ea22.tar.gz openbsd-44c4c19d37de905fca6ed2bcce92dc0d8b19ea22.tar.bz2 openbsd-44c4c19d37de905fca6ed2bcce92dc0d8b19ea22.zip |
Remove label that is now unused (due to arc4random_buf() returning void).
-rw-r--r-- | src/lib/libcrypto/cms/cms_ess.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/libcrypto/cms/cms_ess.c b/src/lib/libcrypto/cms/cms_ess.c index 16b7168f5f..9420405d8f 100644 --- a/src/lib/libcrypto/cms/cms_ess.c +++ b/src/lib/libcrypto/cms/cms_ess.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cms_ess.c,v 1.20 2019/08/11 11:04:18 jsing Exp $ */ | 1 | /* $OpenBSD: cms_ess.c,v 1.21 2019/08/11 14:19:09 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
4 | * project. | 4 | * project. |
@@ -147,9 +147,8 @@ CMS_ReceiptRequest_create0(unsigned char *id, int idlen, int allorfirst, | |||
147 | 147 | ||
148 | merr: | 148 | merr: |
149 | CMSerror(ERR_R_MALLOC_FAILURE); | 149 | CMSerror(ERR_R_MALLOC_FAILURE); |
150 | |||
151 | err: | ||
152 | CMS_ReceiptRequest_free(rr); | 150 | CMS_ReceiptRequest_free(rr); |
151 | |||
153 | return NULL; | 152 | return NULL; |
154 | } | 153 | } |
155 | 154 | ||