- Mar 19, 2016
-
-
Steve Holme authored
warning C4701: potentially uninitialized local variable 'size' used Technically this can't happen, as the usage of 'size' is protected by 'if(parsed)' and 'parsed' is only set after 'size' has been parsed. Anyway, lets keep the compiler happy.
-
Steve Holme authored
-
- Mar 18, 2016
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Since gcc 5, the processor output can get split up on multiple lines that made the configure script fail to figure out values from definitions. The fix is to use cpp -P, and this fix now first checks if cpp -P is necessary and then if cpp -P works before it uses that to extract defined values. Fixes #719
-
Steve Holme authored
formdata.c:390: warning: cast from pointer to integer of different size Introduced in commit ca5f9341 this happens because a char*, which is 32-bits wide in 32-bit land, is being cast to a curl_off_t which is 64-bits wide where 64-bit integers are supported by the compiler. This doesn't happen in 64-bit land as a pointer is the same size as a curl_off_t. This fix doesn't address the fact that a 64-bit value cannot be used for CURLFORM_CONTENTLEN when set in a form array and compiled on a 32-bit platforms, it does at least suppress the compilation warning.
-
Daniel Stenberg authored
-
- Mar 17, 2016
-
-
Gisle Vanem authored
The OpenSSL API change that broke this is "Convert ERR_STATE to new multi-threading API": openssl commit 8509dcc. Closes #713
-
- Mar 16, 2016
-
-
Daniel Stenberg authored
follow-up to 80015cdd
-
Daniel Stenberg authored
... to allow users to see which specfic wildcard that matched when such is used. Also minor logic cleanup to simplify the code, and I removed all tabs from verbose strings.
-
Jay Satiro authored
-
Steve Holme authored
It would also seem that share.h is not required here either as there are no references to the Curl_share structure or functions.
-
Steve Holme authored
-
- Mar 15, 2016
-
-
Jay Satiro authored
Bug: https://curl.haxx.se/mail/lib-2016-03/0150.html Reported-by: Oliver Graute
-
Steve Holme authored
-
- Mar 14, 2016
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
... to allow torture tests then too.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
As just discussed on the mailing list, also document how we prefer spacing in expressions.
-
Daniel Stenberg authored
cppcheck warned: [src/tool_urlglob.c:283]: (style) Checking if unsigned variable 'step_n' is less than zero.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Ripped out from CONTRIBUTE into its own document, but also extended from there.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Since sh_getentry() now checks for invalid sockets itself and by narrowing the scope of the remove_sock_from_hash variable.
-
Daniel Stenberg authored
Simplify the code by using a single entry that looks for a socket in the socket hash. As indicated in #712, the code looked for CURL_SOCKET_BAD at some point and that is ineffective/wrong and this makes it easier to avoid that.
-
Jaime Fullaondo authored
Closes #712
-
- Mar 13, 2016
-
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
Maksim Kuzevanov authored
Closes #703
-
Daniel Stenberg authored
-
Steve Holme authored
-
- Mar 12, 2016
-
-
Steve Holme authored
Rather than use a 0 and 1 integer base result code use a TRUE / FALSE based success code.
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
- Mar 11, 2016
-
-
Steve Holme authored
-
Steve Holme authored
Rather than use 0 and 1 integer base result codes use a FALSE / TRUE based success code.
-