- Oct 08, 2018
-
-
Daniel Stenberg authored
-
Daniel Gustafsson authored
Closes #3112 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
-
Viktor Szakats authored
as detected by codespell 1.14.0 Closes https://github.com/curl/curl/pull/3114 Reviewed-by: Marcel Raad <Marcel.Raad@teamviewer.com>
-
Daniel Stenberg authored
-
Daniel Stenberg authored
... when they return NULL we're out of memory and MUST return failure. closes #3111
-
Daniel Stenberg authored
Bug bounty explainer. See https://bountygraph.com/programs/curl Closes #3067
-
Rick Deist authored
Closes #3110
-
Daniel Stenberg authored
Now FILE transfers send headers to the header callback like HTTP and other protocols. Also made curl_easy_getinfo(...CURLINFO_PROTOCOL...) work for FILE in the callbacks. Makes "curl -i file://.." and "curl -I file://.." work like before again. Applied the bold header logic to them too. Regression from c1c27625 (7.61.0) Reported-by: Shaun Jackman Fixes #3083 Closes #3101
-
- Oct 07, 2018
-
-
Daniel Gustafsson authored
In case a very small buffer was passed to the version function, it could result in the buffer not being NULL-terminated since strncpy() doesn't guarantee a terminator on an overflowed buffer. Rather than adding code to terminate (and handle zero-sized buffers), move to using snprintf() instead like all the other vtls backends. Closes #3105 Reviewed-by: Daniel Stenberg <daniel@haxx.se> Reviewed-by: Viktor Szakats <commit@vszakats.net>
-
Daniel Gustafsson authored
Add DYLD_INSERT_LIBRARIES support to the TODO list. Reported in #2394.
-
Daniel Gustafsson authored
The LD_PRELOAD functionality doesn't exist on macOS, so skip any tests requiring it. Fixes #2394 Closes #3106 Reported-by: Github user @jakirkham Reviewed-by: Daniel Stenberg <daniel@haxx.se>
-
Marcel Raad authored
This enables more tests. Closes https://github.com/curl/curl/pull/3104
-
Marcel Raad authored
Closes https://github.com/curl/curl/pull/3104
-
Marcel Raad authored
Use the oldest and latest Windows SDKs for them. Also, remove all but one OpenSSL build. Closes https://github.com/curl/curl/pull/3104
-
Marcel Raad authored
This adds Visual Studio 9 and 10 builds. There's no 64-bit VC9 compiler on AppVeyor, so use it as the Win32 build. Also, VC9 cannot be used for running the test suite. Closes https://github.com/curl/curl/pull/3104
-
Marcel Raad authored
Closes https://github.com/curl/curl/pull/3104
-
Marcel Raad authored
Closes https://github.com/curl/curl/pull/3104
-
- Oct 06, 2018
-
-
Daniel Stenberg authored
To make it only send one DoH request and avoid the race condition that could lead to the requests getting sent in reversed order and thus making it hard to compare in the test case. Fixes #3107 Closes #3108
-
Daniel Stenberg authored
[ci skip]
-
- Oct 05, 2018
-
-
Daniel Stenberg authored
-
Dmitry Kostjuchenko authored
Closes #3048
-
Daniel Stenberg authored
Ideally this will fix the reversed order shown in SPARC tests: resp 8: Expected 127.0.0.1 got 1.0.0.127 Closes #3091
-
Jay Satiro authored
-
Daniel Gustafsson authored
The parameter reference <string> was causing rendering issues in the generated HTML page, as <string> isn't a valid HTML tag. Fix by back- tick escaping it. Closes #3099 Reviewed-by: Jay Satiro <raysatiro@yahoo.com> Reviewed-by: Daniel Stenberg <daniel@haxx.se>
-
Daniel Gustafsson authored
If a !checksrc! disable command specified to ignore zero errors, it was still added to the ignore block even though nothing was ignored. While there were no blocks ignored that shouldn't be ignored, the processing ended with with a warning: <filename>:<line>:<col>: warning: Unused ignore: LONGLINE (UNUSEDIGNORE) /* !checksrc! disable LONGLINE 0 */ ^ Fix by instead treating a zero ignore as a a badcommand and throw a warning for that one. Closes #3096 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
-
Daniel Gustafsson authored
Enable strict and warnings mode for checksrc to ensure we aren't missing anything due to bugs in the checking code. This uncovered a few things which are all fixed in this commit: * several variables were used uninitialized * several variables were not defined in the correct scope * the whitelist filehandle was read even if the file didn't exist * the enable_warn() call when a disable counter had expired was passing incorrect variables, but since the checkwarn() call is unlikely to hit (the counter is only decremented to zero on actual ignores) it didn't manifest a problem. Closes #3090 Reviewed-by: Daniel Stenberg <daniel@haxx.se> Reviewed-by: Marcel Raad <Marcel.Raad@teamviewer.com>
-
Marcel Raad authored
It's issued by older Windows SDKs (prior to version 8.0).
-
Sergei Nikulov authored
-
Dmitry Kostjuchenko authored
Added configuration checks for HAVE_BUILTIN_AVAILABLE and HAVE_CLOCK_GETTIME_MONOTONIC. Closes #3097
-
Marcel Raad authored
It almost always results in "starttransfer vs total: 0.000001 0.000000". I cannot reproduce this locally, so disable it for now. Closes https://github.com/curl/curl/pull/3100
-
Marcel Raad authored
CMake's default has spaces and in 32-bit mode parentheses, which result in syntax errors in curl-config. Closes https://github.com/curl/curl/pull/3100
-
Marcel Raad authored
They don't add much value. Closes https://github.com/curl/curl/pull/3100
-
Marcel Raad authored
Use the preinstalled MSYS2 bash for that. Disable test 1139 as the CMake build doesn't generate curl.1. Ref: https://github.com/curl/curl/issues/3070#issuecomment-425922224 Closes https://github.com/curl/curl/pull/3100
-
Marcel Raad authored
Required to run the tests. Closes https://github.com/curl/curl/pull/3100
-
- Oct 04, 2018
-
-
Daniel Stenberg authored
Closes #3092
-
Daniel Stenberg authored
To make the test case work with different gnutls-serv versions better. Reported-by: Kamil Dudka Fixes #3093 Closes #3094
-
Marcel Raad authored
curl generated by CMake's Visual Studio generator has "Windows" in the version number.
-
Colin Hogben authored
Fix problems caused by differences in treatment of bytes objects between python2 and python3. Fixes #2929 Closes #3080
-
- Oct 03, 2018
-
-
Daniel Gustafsson authored
The result of a memory allocation should always be checked, as we may run under memory pressure where even a small allocation can fail. This adds checking and error handling to a few cases where the allocation wasn't checked for success. In the ftp case, the freeing of the path variable is moved ahead of the allocation since there is little point in keeping it around across the strdup, and the separation makes for more readable code. In nwlib, the lock is aslo freed in the error path. Also bumps the copyright years on affected files. Closes #3084 Reviewed-by: Jay Satiro <raysatiro@yahoo.com> Reviewed-by: Daniel Stenberg <daniel@haxx.se>
-
Daniel Gustafsson authored
Ensure that the parameters in the comment match the actual names in the prototype. Closes #3079 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
-