artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
14d2b0c
)
Zap extra parens
author
tb
<tb@openbsd.org>
Tue, 15 Aug 2023 18:05:15 +0000
(18:05 +0000)
committer
tb
<tb@openbsd.org>
Tue, 15 Aug 2023 18:05:15 +0000
(18:05 +0000)
lib/libcrypto/asn1/a_string.c
patch
|
blob
|
history
diff --git
a/lib/libcrypto/asn1/a_string.c
b/lib/libcrypto/asn1/a_string.c
index
7deaf38
..
ec492e7
100644
(file)
--- a/
lib/libcrypto/asn1/a_string.c
+++ b/
lib/libcrypto/asn1/a_string.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: a_string.c,v 1.1
6 2023/08/15 17:40:06
tb Exp $ */
+/* $OpenBSD: a_string.c,v 1.1
7 2023/08/15 18:05:15
tb Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@
-186,7
+186,7
@@
ASN1_STRING_set(ASN1_STRING *astr, const void *_data, int len)
if ((astr->data = calloc(1, len + 1)) == NULL) {
ASN1error(ERR_R_MALLOC_FAILURE);
- return
(0)
;
+ return
0
;
}
astr->length = len;