mirror of
https://github.com/curl/curl.git
synced 2026-08-26 11:43:32 +03:00
- PHP's bug report #43158 (http://bugs.php.net/bug.php?id=43158) identifies a
true bug in libcurl built with OpenSSL. It made curl_easy_getinfo() more or less always return 0 for CURLINFO_SSL_VERIFYRESULT because the function that would set it to something non-zero would return before the assign in almost all error cases. The internal variable is now set to non-zero from the start of the function only to get cleared later on if things work out fine.
This commit is contained in:
parent
03986f1b8b
commit
ae654266df
3 changed files with 35 additions and 21 deletions
|
|
@ -18,6 +18,7 @@ This release includes the following changes:
|
|||
o Now builds for the INTEGRITY operating system
|
||||
o Added CURLINFO_APPCONNECT_TIME
|
||||
o Added test selection by key word in runtests.pl
|
||||
o the curl tool's -w option support the %{ssl_verify_result} variable
|
||||
|
||||
This release includes the following bugfixes:
|
||||
|
||||
|
|
@ -37,6 +38,7 @@ This release includes the following bugfixes:
|
|||
o user-agent in CONNECT with non-HTTP protocols
|
||||
o CURL_READFUNC_PAUSE problems fixed
|
||||
o --use-ascii now works on Symbian OS, MS-DOS and OS/2
|
||||
o CURLINFO_SSL_VERIFYRESULT is fixed
|
||||
|
||||
This release includes the following known bugs:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue