Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-05-12 | make sure the returned pointer is NULL when encoding fails | Daniel Stenberg | |
2004-05-12 | clean up and return better on out of memory | Daniel Stenberg | |
2004-05-12 | return NULL on out of memory | Daniel Stenberg | |
2004-05-12 | Curl_done() and the protocol-specific conn->curl_done() functions now all | Daniel Stenberg | |
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). | |||
2004-05-12 | return faster when we "hit a wall" while printfing | Daniel Stenberg | |
2004-05-12 | general cleanup to bail out nice and clean when a memory function fails | Daniel Stenberg | |
to deliver | |||
2004-05-12 | even if Curl_do() fails, we must call Curl_done() to do proper cleaning up | Daniel Stenberg | |
2004-05-12 | improved cleaning up in case of memory allocation failures | Daniel Stenberg | |
2004-05-12 | bail out if we can't allocate the new range string, and make use of aprintf() | Daniel Stenberg | |
instead of using snprintf() + strdup(). | |||
2004-05-12 | Disable memdebug for the allocs done by the app, unless CURLTOOLDEBUG is | Daniel Stenberg | |
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. | |||
2004-05-12 | new man page | Daniel Stenberg | |
2004-05-12 | use size_t better for buffer and alloc lengths | Daniel Stenberg | |
2004-05-12 | removed another jhrg-reference in a comment | Daniel Stenberg | |
2004-05-12 | Edited comments only. | Daniel Stenberg | |
2004-05-12 | The Curl_unencode_XXX_write() function take a ssize_t as third argument, so | Daniel Stenberg | |
we typecast on invoke. | |||
2004-05-12 | Left-over from before the return-code fix. This is probably the code that | Daniel Stenberg | |
causes xlc and gcc act differently on AIX. | |||
2004-05-11 | fixed Curl_open() to not leak anything if one malloc() fails, fix by | Daniel Stenberg | |
James Bursa only modified by me. | |||
2004-05-11 | - Nico Stappenbelt reported that when processing domain and search lines in | Daniel Stenberg | |
the resolv.conf file, the first entry encountered is processed and used as the search list. According to the manual pages for both Linux, Solaris and Tru64, the last entry of either a domain or a search field is used. | |||
2004-05-11 | revert the accidentally added use of strace | Daniel Stenberg | |
2004-05-11 | minor leak in case of error, thanks to "./runtests.pl -n -t 25" | Daniel Stenberg | |
2004-05-11 | clear up memory on failure a little better | Daniel Stenberg | |
2004-05-11 | make the libidn pointer in the version struct a const | Daniel Stenberg | |
2004-05-11 | they're at least 36 functions now | Daniel Stenberg | |
2004-05-11 | updated to reflect reality! | Daniel Stenberg | |
2004-05-11 | cut out the changelog, it is far from accurate anyway | Daniel Stenberg | |
2004-05-11 | added curl_global_init_mem | Daniel Stenberg | |
2004-05-11 | curl_global_init_mem() allows the memory functions to be replaced. | Daniel Stenberg | |
memory.h is included everywhere for this. | |||
2004-05-11 | *** empty log message *** | Daniel Stenberg | |
2004-05-11 | Make this source code use our internal *printf(). | Daniel Stenberg | |
Also some minor edits. | |||
2004-05-11 | Added recent events to the log | Daniel Stenberg | |
2004-05-11 | more changes, more news, more people | Daniel Stenberg | |
2004-05-11 | another official download mirror | Daniel Stenberg | |
2004-05-11 | new attempt at an improved DSP-file generation | Daniel Stenberg | |
2004-05-10 | slightly better dealing of bad mem situations | Daniel Stenberg | |
2004-05-10 | Moved the fetching of the list of matching cookies to make it easier to free | Daniel Stenberg | |
that list in case something goes wrong in the function and we must bail out. Courtesy of the torture testing. | |||
2004-05-10 | curl_slist_append() fixed to clear up properly if a memory function fails | Daniel Stenberg | |
2004-05-10 | better detect if/when curl_slist_append() returns failure, and bail out | Daniel Stenberg | |
accordingly | |||
2004-05-10 | if a malloc fails, clear up the memory and return failure | Daniel Stenberg | |
2004-05-10 | typo | Daniel Stenberg | |
2004-05-10 | the aprintf() versions now return NULL if _any_ alloc along the way failed, | Daniel Stenberg | |
previously they could return a piece of the string, making it impossible for the caller to detect errors. | |||
2004-05-10 | better detection for when add_buffer() returns failure, and return when that | Daniel Stenberg | |
happens | |||
2004-05-10 | Curl_hash_add() was modified to clear up better in case of internal failure. | Daniel Stenberg | |
When failing, it should not tamper at all with the data it was supposed to add to the cache. | |||
2004-05-10 | checkpasswd() prevents segfault by checking that input argument is non-NULL | Daniel Stenberg | |
2004-05-10 | James Bursa's adjustments to make the -t option work for any test case. | Daniel Stenberg | |
The -t is the "torture" test that first runs the test and counts the number of allocations performed during it, then it runs the test repeatedly over and over again and makes alloc number N fail to verify that we detect and return properly from error cases everywhere. | |||
2004-05-10 | make Curl_llist_insert_next() fail properly if malloc() fails | Daniel Stenberg | |
2004-05-10 | better checking that strdup() works | Daniel Stenberg | |
2004-05-10 | Luca fixed the nc= in the digest line since it apparantly should not have | Daniel Stenberg | |
quotes... | |||
2004-05-10 | James Bursa added better error checking for failer memory calls when | Daniel Stenberg | |
building formposts | |||
2004-05-10 | build curllib.dsp from these | Daniel Stenberg | |
2004-05-10 | don't use -i when checking for our own server | Daniel Stenberg | |