- Dec 29, 2014
-
-
Bill Nagel authored
-
- Dec 28, 2014
-
-
Steve Holme authored
vtls.c:683:43: warning: unused parameter 'data'
-
Steve Holme authored
sockfilt.c:288: warning: conversion to 'DWORD' from 'size_t' may alter its value sockfilt.c:291: warning: conversion to 'DWORD' from 'size_t' may alter its value sockfilt.c:323: warning: conversion to 'DWORD' from 'size_t' may alter its value sockfilt.c:326: warning: conversion to 'DWORD' from 'size_t' may alter its value
-
Steve Holme authored
lib1509.c:93:18: warning: conversion to 'long int' from 'size_t' may alter its value
-
Steve Holme authored
lib556.c:90: warning: conversion to 'unsigned int' from 'size_t' may alter its value
-
Steve Holme authored
-
Steve Holme authored
curl_schannel.h:123: warning: right-hand operand of comma expression has no effect Some instances of the curlssl_close_all() function were declared with a void return type whilst others as int. The schannel version returned CURLE_NOT_BUILT_IN and others simply returned zero, but in all cases the return code was ignored by the calling function Curl_ssl_close_all(). For the time being and to keep the internal API consistent, changed all declarations to use a void return type. To reduce code we might want to consider removing the unimplemented versions and use a void #define like schannel does.
-
Daniel Stenberg authored
-
Steve Holme authored
* Missing initialisation of upload status caused a seg fault * Missing data termination caused corrupt data to be uploaded * Data verification should be performed in <upload> element * Added missing recipient list cleanup
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
- Dec 27, 2014
-
-
Steve Holme authored
-
Steve Holme authored
This frees up the 'result' variable for CURLcode based result codes.
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
...and don't use CURLE_OK in failure/success comparisons.
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
As this feature has been implemented for 7.40.0.
-
Steve Holme authored
...as calloc() automatically clears the area of memory with zeros.
-
Steve Holme authored
...with the exception of the start of block statement curly brackets.
-
Steve Holme authored
For consistency, as we seem to have a bit of a mixed bag, changed all instances of ipv4 and ipv6 in comments and documentations to use the correct case.
-
Steve Holme authored
...following change in curl --version output.
-
- Dec 26, 2014
-
-
Steve Holme authored
Use Unix when generically writing about Unix based systems as UNIX is the trademark and should only be used in a particular product's name.
-
Steve Holme authored
if2ip.c:119: warning: unused parameter 'remote_scope_id' ...and some minor code style policing in the same function.
-
Steve Holme authored
Otherwise Curl_ssl_init_certinfo() can fail and set the num_of_certs member variable to the requested count, which could then be used incorrectly as libcurl closes down.
-
Steve Holme authored
The return type for this function was 0 on success and 1 on error. This was then examined by the calling functions and, in most cases, used to return CURLE_OUT_OF_MEMORY. Instead use CURLcode for the return type and return the out of memory error directly, propagating it up the call stack.
-
Steve Holme authored
To match the curl --version output.
-
Marc Hoersken authored
Merge multiple internal arrays into one, even if some variables will not not be used. They are all created with the number of file descriptors as their size. Also fix possible thread handle leak in CloseHandle-loop.
-
Marc Hoersken authored
Improves performance of test cases 574 and 575 by 50%. A value of zero causes the thread to relinquish the remainder of its time slice to any other thread of equal priority that is ready to run. If there are no other threads of equal priority ready to run, the function returns immediately, and the thread continues execution. http://msdn.microsoft.com/library/windows/desktop/ms686307.aspx
-
- Dec 25, 2014
-
-
Steve Holme authored
In line with the other features listed in the --version output, capitalise the UNIX socket feature.
-
Steve Holme authored
The return type of this function is a boolean value, and even uses a bool internally, so use bool in the function declaration as well as the variables that store the return value, to avoid any confusion.
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
- Dec 24, 2014
-
-
Steve Holme authored
curl_ntlm_core.c:301: warning: pointer targets in passing argument 2 of 'CryptImportKey' differ in signedness curl_ntlm_core.c:310: warning: passing argument 6 of 'CryptEncrypt' from incompatible pointer type curl_ntlm_core.c:540: warning: passing argument 4 of 'CryptGetHashParam' from incompatible pointer type
-