artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5c03329
)
Put back a goto end that was unintentionally removed.
author
jsing
<jsing@openbsd.org>
Sat, 11 Apr 2015 15:41:57 +0000
(15:41 +0000)
committer
jsing
<jsing@openbsd.org>
Sat, 11 Apr 2015 15:41:57 +0000
(15:41 +0000)
Spotted by doug@
usr.bin/openssl/pkeyparam.c
patch
|
blob
|
history
diff --git
a/usr.bin/openssl/pkeyparam.c
b/usr.bin/openssl/pkeyparam.c
index
2521362
..
b436929
100644
(file)
--- a/
usr.bin/openssl/pkeyparam.c
+++ b/
usr.bin/openssl/pkeyparam.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: pkeyparam.c,v 1.
4 2015/04/11 15:21:42
jsing Exp $ */
+/* $OpenBSD: pkeyparam.c,v 1.
5 2015/04/11 15:41:57
jsing Exp $ */
/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
* project 2006
*/
@@
-147,6
+147,7
@@
pkeyparam_main(int argc, char **argv)
if (!(in = BIO_new_file(pkeyparam_config.infile, "r"))) {
BIO_printf(bio_err, "Can't open input file %s\n",
pkeyparam_config.infile);
+ goto end;
}
} else
in = BIO_new_fp(stdin, BIO_NOCLOSE);