Changeset 105945 in vbox for trunk/src/libs/openssl-3.1.7/crypto/asn1/a_verify.c
- Timestamp:
- Sep 4, 2024 11:32:47 AM (6 months ago)
- svn:sync-xref-src-repo-rev:
- 164679
- Location:
- trunk/src/libs/openssl-3.1.7
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/openssl-3.1.7
- Property svn:mergeinfo
-
old new 25 25 /vendor/openssl/3.0.3:151497-151729 26 26 /vendor/openssl/3.0.7:154371 27 /vendor/openssl/3.1.7:164675-164677
-
- Property svn:mergeinfo
-
trunk/src/libs/openssl-3.1.7/crypto/asn1/a_verify.c
r104078 r105945 1 1 /* 2 * Copyright 1995-202 1The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 1995-2024 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 4 * Licensed under the Apache License 2.0 (the "License"). You may not use … … 204 204 if (inl <= 0) { 205 205 ERR_raise(ERR_LIB_ASN1, ERR_R_INTERNAL_ERROR); 206 ret = -1; 206 207 goto err; 207 208 } 208 209 if (buf_in == NULL) { 209 210 ERR_raise(ERR_LIB_ASN1, ERR_R_MALLOC_FAILURE); 211 ret = -1; 210 212 goto err; 211 213 }
Note:
See TracChangeset
for help on using the changeset viewer.