5bf02b16 | 13-May-2004 |
Daniel Stenberg |
curl_free() doesn't free(NULL) but just returns |
594cb850 | 13-May-2004 |
Daniel Stenberg |
deal with input arguments as NULL |
78aba6e4 | 13-May-2004 |
Daniel Stenberg |
return CURLDIGEST_NOMEM when a memory function fails to deliver |
ccdcdb2a | 13-May-2004 |
Daniel Stenberg |
mark a value as alloced when strdup()ed to prevent memory leaks |
b121e41e | 13-May-2004 |
Daniel Stenberg |
bail out when no memory occurs |
05d8e56f | 13-May-2004 |
Daniel Stenberg |
Gisle Vamem reintroduced the verifyconnect() call on windows as well, and we now use it to provide more info back on connect failures. |
4345c7a7 | 13-May-2004 |
Daniel Stenberg |
Gisle: minor fix |
12d5e33d | 13-May-2004 |
Daniel Stenberg |
no more Curl_ldap_done |
6d70a827 | 13-May-2004 |
Daniel Stenberg |
Added two two missing header files I missed when I removed the noinst_HEADERS |
47d52d4e | 13-May-2004 |
Daniel Stenberg |
added https.c |
4973b0f8 | 13-May-2004 |
Daniel Stenberg |
basic https fetching script |
d1542bf5 | 13-May-2004 |
Daniel Stenberg |
made 'runtests.pl -t' run over all the tests just like other command lines Also made -t imply -n to disable valgrind, it runs sloooow otherwise. This now manages to run all tests OK up t
made 'runtests.pl -t' run over all the tests just like other command lines Also made -t imply -n to disable valgrind, it runs sloooow otherwise. This now manages to run all tests OK up to test case 100 (the first FTP one) for me.
show more ...
|
2b7727aa | 13-May-2004 |
Daniel Stenberg |
James Bursa's patch to avoid free(NULL) (mainly because the libcurl memdebug system thinks free(NULL) is badness) |
fd775454 | 12-May-2004 |
Daniel Stenberg |
Check that memory functions return non-NULL or return error. |
8e09a389 | 12-May-2004 |
Daniel Stenberg |
make sure the returned pointer is NULL when encoding fails |
aa3ae018 | 12-May-2004 |
Daniel Stenberg |
clean up and return better on out of memory |
c1236768 | 12-May-2004 |
Daniel Stenberg |
return NULL on out of memory |
d60c2257 | 12-May-2004 |
Daniel Stenberg |
Curl_done() and the protocol-specific conn->curl_done() functions now all take a CURLcode as a second argument, that is non-zero when Curl_done() is called after an error was returned from Cu
Curl_done() and the protocol-specific conn->curl_done() functions now all take a CURLcode as a second argument, that is non-zero when Curl_done() is called after an error was returned from Curl_do() (or similar).
show more ...
|
1d7ce367 | 12-May-2004 |
Daniel Stenberg |
return faster when we "hit a wall" while printfing |
34e8baab | 12-May-2004 |
Daniel Stenberg |
general cleanup to bail out nice and clean when a memory function fails to deliver |
a219d774 | 12-May-2004 |
Daniel Stenberg |
even if Curl_do() fails, we must call Curl_done() to do proper cleaning up |
005042e9 | 12-May-2004 |
Daniel Stenberg |
improved cleaning up in case of memory allocation failures |
d301d69f | 12-May-2004 |
Daniel Stenberg |
bail out if we can't allocate the new range string, and make use of aprintf() instead of using snprintf() + strdup(). |
34af02ca | 12-May-2004 |
Daniel Stenberg |
Disable memdebug for the allocs done by the app, unless CURLTOOLDEBUG is defined (which it never is atm). Now, we can focus on making 'runtests -t [num]' work on all test cases and w
Disable memdebug for the allocs done by the app, unless CURLTOOLDEBUG is defined (which it never is atm). Now, we can focus on making 'runtests -t [num]' work on all test cases and we should never leak nor crash.
show more ...
|
91025d1d | 12-May-2004 |
Daniel Stenberg |
new man page |