diff options
author | beck <> | 2014-04-26 18:56:38 +0000 |
---|---|---|
committer | beck <> | 2014-04-26 18:56:38 +0000 |
commit | 47bb6e76785f0b1c4d19d8d0a02f3eb3813f96e2 (patch) | |
tree | dff54039de6c4454b05953e2ce78edfc5693e6b5 /src/lib/libcrypto/x509v3/v3_info.c | |
parent | 8f710803a9e330d7e3f2e62116ae5b3fc02bd6cf (diff) | |
download | openbsd-47bb6e76785f0b1c4d19d8d0a02f3eb3813f96e2.tar.gz openbsd-47bb6e76785f0b1c4d19d8d0a02f3eb3813f96e2.tar.bz2 openbsd-47bb6e76785f0b1c4d19d8d0a02f3eb3813f96e2.zip |
Replace all use of ERR_add_error_data with ERR_asprintf_error_data.
This avoids a lot of ugly gymnastics to do snprintfs before sending the
bag of strings to ERR, and eliminates at least one place in dso_dlfctn.c
where it was being called with the incorrect number of arguments and
using random things off the stack as addresses of strings.
ok krw@, jsing@
Diffstat (limited to 'src/lib/libcrypto/x509v3/v3_info.c')
-rw-r--r-- | src/lib/libcrypto/x509v3/v3_info.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libcrypto/x509v3/v3_info.c b/src/lib/libcrypto/x509v3/v3_info.c index 7853e3e23b..9ae1596b1f 100644 --- a/src/lib/libcrypto/x509v3/v3_info.c +++ b/src/lib/libcrypto/x509v3/v3_info.c | |||
@@ -184,12 +184,10 @@ v2i_AUTHORITY_INFO_ACCESS(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, | |||
184 | if (!acc->method) { | 184 | if (!acc->method) { |
185 | X509V3err(X509V3_F_V2I_AUTHORITY_INFO_ACCESS, | 185 | X509V3err(X509V3_F_V2I_AUTHORITY_INFO_ACCESS, |
186 | X509V3_R_BAD_OBJECT); | 186 | X509V3_R_BAD_OBJECT); |
187 | ERR_add_error_data(2, "value=", objtmp); | 187 | ERR_asprintf_error_data("value=%s", objtmp); |
188 | free(objtmp); | ||
189 | goto err; | 188 | goto err; |
190 | } | 189 | } |
191 | free(objtmp); | 190 | free(objtmp); |
192 | |||
193 | } | 191 | } |
194 | return ainfo; | 192 | return ainfo; |
195 | 193 | ||