- Aug 01, 2017
-
-
Marcel Raad authored
Use LongToHandle to convert from long to HANDLE in the Win32 implementation. This should fix the following warning when compiling with MSVC 11 (2012) in 64-bit mode: lib\curl_threads.c(113): warning C4306: 'type cast' : conversion from 'long' to 'HANDLE' of greater size Closes https://github.com/curl/curl/pull/1717
-
Daniel Stenberg authored
Reported-by: Max Dymond
-
Daniel Stenberg authored
-
Brad Spencer authored
There are some bugs in how timers are managed for a single easy handle that causes the wrong "next timeout" value to be reported to the application when a new minimum needs to be recomputed and that new minimum should be an existing timer that isn't currently set for the easy handle. When the application drives a set of easy handles via the `curl_multi_socket_action()` API (for example), it gets told to wait the wrong amount of time before the next call, which causes requests to linger for a long time (or, it is my guess, possibly forever). Bug: https://curl.haxx.se/mail/lib-2017-07/0033.html
-
Jay Satiro authored
.. to catch accidental use of deprecated error codes. Ref: https://github.com/curl/curl/issues/1688#issuecomment-316764237
-
- Jul 31, 2017
-
-
Jeremy Tan authored
Fixes #1669 Closes #1713
-
Daniel Stenberg authored
test 1429 and 1433 were updated to work with the stricter HTTP status line parser. Closes #1714 Reported-by: Brian Carpenter
-
- Jul 30, 2017
-
-
Jay Satiro authored
Follow-up to 171f8ded and de6de94c. Bug: https://github.com/curl/curl/commit/de6de94#commitcomment-23370851 Reported-by: Daniel Stenberg
-
- Jul 29, 2017
-
-
Jason Juang authored
Closes #1674
-
Daniel Stenberg authored
-
Marcel Raad authored
It was misspelled as CURL_ERROR in commit 2d86e8d1. Closes https://github.com/curl/curl/pull/1686
-
Jay Satiro authored
Follow-up to 171f8ded. Ref: https://github.com/curl/curl/issues/1704
-
Jay Satiro authored
Follow-up to 4dee50b9. Ref: https://github.com/curl/curl/pull/1693
-
- Jul 28, 2017
-
-
Daniel Stenberg authored
Reported-by: olesteban at github Fixes #1704
-
Johannes Schindelin authored
The headers of librtmp declare the socket as `int`, and on Windows, that disagrees with curl_socket_t. Bug: #1652 Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-
Daniel Stenberg authored
-
Daniel Stenberg authored
... to make all libcurl internals able to use the same data types for the struct members. The timeval struct differs subtly on several platforms so it makes it cumbersome to use everywhere. Ref: #1652 Closes #1693
-
- Jul 27, 2017
-
-
Daniel Stenberg authored
... which made --tlsv1.2 not work because it would blank the max tls version variable. Reported-by: Nick Miyake Bug: #1703
-
- Jul 26, 2017
-
-
Daniel Stenberg authored
Reported-by: <ovidiu-benea@users.noreply.github.com> Closes #1675 Closes #1683
-
Daniel Stenberg authored
... to silence warning.
-
- Jul 20, 2017
-
-
Kamil Dudka authored
... causing a SIGSEGV in showit() in case the handle used to initiate the connection has already been freed. This commit fixes a bug introduced in curl-7_19_5-204-g5f0cae803. Reported-by: Rob Sanders Bug: https://bugzilla.redhat.com/1436158
-
Kamil Dudka authored
No changes in behavior intended by this commit.
-
- Jul 18, 2017
-
-
Marcel Raad authored
MSVC warns that gethostbyname is deprecated. Always use getaddrinfo instead to fix this when IPv6 is enabled, also for IPv4 resolves. This is also consistent with what libcurl does. Closes https://github.com/curl/curl/pull/1682
-
- Jul 17, 2017
-
-
Jay Satiro authored
- s/SessionHandle/Curl_easy/ Bug: https://github.com/curl/curl/commit/eb16305#commitcomment-23035670 Reported-by: Gisle Vanem
-
- Jul 16, 2017
-
-
Marcel Raad authored
Older GCC warns: /tests/server/rtspd.c:1194:10: warning: missing braces around initializer [-Wmissing-braces] Fix this by using memset instead of an initializer.
-
Marcel Raad authored
With warning level 4, MSVC warns about assignments within conditional expressions. Change the while loop to a do-while loop to fix this. This change is also consistent with CODE_STYLE.md.
-
Marcel Raad authored
MSVC warns when implicitly casting -1 to unsigned long.
-
Marcel Raad authored
warning C4701: potentially uninitialized local variable 'req' used
-
- Jul 14, 2017
-
-
Marcel Raad authored
Disabled in cda19a34. It only needs to be disabled for libcurl.
-
- Jul 13, 2017
-
-
Marcel Raad authored
This is consistent with 7bc64561, which changed the warning level from 3 to 4 for the Visual Studio project files. But disable the level 4 warning C4127 "conditional expression is constant", as that one is issued by older versions of the Windows SDK as well as curl itself under some circumstances. Closes https://github.com/curl/curl/pull/1667
-
Max Dymond authored
Install libidn2 to increase test coverage (IDN tests) Closes https://github.com/curl/curl/pull/1673
-
- Jul 12, 2017
-
-
Marcel Raad authored
... to get warnings also on Linux/GCC and OSX/clang. Closes https://github.com/curl/curl/pull/1666
-
Max Dymond authored
Install libssh2 to increase test coverage (SFTP, SCP)
-
Marcel Raad authored
... to avoid compiler warnings if the user doesn't want WIN32_LEAN_AND_MEAN.
-
- Jul 11, 2017
-
-
Marcel Raad authored
It's defined for all build systems in curl_setup.h since commit beb08481. This caused macro redefinition warnings in the configure builds. Closes https://github.com/curl/curl/pull/1677
-
Jay Satiro authored
-
Marcel Raad authored
Make sure to always define WIN32_LEAN_AND_MEAN before including any Windows headers to avoid pulling in unnecessary headers. This avoids unnecessary macro clashes and compiler warnings. Ref: https://github.com/curl/curl/issues/1562 Closes https://github.com/curl/curl/pull/1672
-
Jay Satiro authored
This is a follow-up to af021625 which removed (SET_)ERRNO macros. That commit was an earlier draft that I committed by mistake, which was then remedied by a5834e52 and e909de65, and now this commit. With this commit there is now no difference between the current code and the changes that were approved in the final draft. Thanks-to: Max Dymond, Marcel Raad, Daniel Stenberg, Gisle Vanem Ref: https://github.com/curl/curl/pull/1589
-
- Jul 10, 2017
-
-
Max Dymond authored
Closes https://github.com/curl/curl/pull/1671
-