Changeset 105945 in vbox for trunk/src/libs/openssl-3.1.7/crypto/bio/bio_lib.c
- Timestamp:
- Sep 4, 2024 11:32:47 AM (8 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/bio/bio_lib.c
r104078 r105945 1 1 /* 2 * Copyright 1995-202 3The 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 … … 870 870 871 871 #ifndef OPENSSL_NO_SOCK 872 if (BIO_get_fd(bio, &fd) > 0 && fd < FD_SETSIZE) 873 return BIO_socket_wait(fd, BIO_should_read(bio), max_time); 872 if (BIO_get_fd(bio, &fd) > 0) { 873 int ret = BIO_socket_wait(fd, BIO_should_read(bio), max_time); 874 875 if (ret != -1) 876 return ret; 877 } 874 878 #endif 875 879 /* fall back to polling since no sockets are available */
Note:
See TracChangeset
for help on using the changeset viewer.