Changeset 105949 in vbox for trunk/src/libs/openssl-3.1.7/crypto/conf
- Timestamp:
- Sep 4, 2024 12:53:14 PM (7 months ago)
- svn:sync-xref-src-repo-rev:
- 164683
- Location:
- trunk/src/libs/openssl-3.1.7/crypto/conf
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/openssl-3.1.7/crypto/conf/conf_def.c
r105945 r105949 1 1 /* 2 * Copyright 1995-202 4The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 4 * Licensed under the Apache License 2.0 (the "License"). You may not use … … 333 333 v = NULL; 334 334 /* check for line continuation */ 335 if ( !again &&bufnum >= 1) {335 if (bufnum >= 1) { 336 336 /* 337 337 * If we have bytes and the last char '\\' and second last char -
trunk/src/libs/openssl-3.1.7/crypto/conf/conf_lib.c
r105945 r105949 1 1 /* 2 * Copyright 2000-202 4The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2000-2022 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 4 * Licensed under the Apache License 2.0 (the "License"). You may not use … … 465 465 void OPENSSL_INIT_free(OPENSSL_INIT_SETTINGS *settings) 466 466 { 467 if (settings == NULL)468 return;469 470 467 free(settings->filename); 471 468 free(settings->appname); -
trunk/src/libs/openssl-3.1.7/crypto/conf/conf_sap.c
r105945 r105949 1 1 /* 2 * Copyright 2002-202 4The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2002-2023 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 4 * Licensed under the Apache License 2.0 (the "License"). You may not use … … 39 39 settings.flags = DEFAULT_CONF_MFLAGS; 40 40 OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CONFIG, &settings); 41 42 free(settings.appname);43 41 } 44 42 #endif
Note:
See TracChangeset
for help on using the changeset viewer.