Changeset 105945 in vbox for trunk/src/libs/openssl-3.1.7/crypto/provider_core.c
- Timestamp:
- Sep 4, 2024 11:32:47 AM (5 months ago)
- 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/provider_core.c
r104078 r105945 1 1 /* 2 * Copyright 2019-202 3The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2019-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 … … 560 560 561 561 /* provider_new() generates an error, so no need here */ 562 if ((prov = provider_new(name, template.init, template.parameters)) == NULL) 562 prov = provider_new(name, template.init, template.parameters); 563 564 if (prov == NULL) 563 565 return NULL; 566 567 if (!ossl_provider_set_module_path(prov, template.path)) { 568 ossl_provider_free(prov); 569 return NULL; 570 } 564 571 565 572 prov->libctx = libctx;
Note:
See TracChangeset
for help on using the changeset viewer.