aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-05-14clean up properly on failure to enable easier libcurl leak detectionDaniel Stenberg
2004-05-14new cvs instructionsDaniel Stenberg
2004-05-14enable memory debugging the same way the curl command line tool already doesDaniel Stenberg
2004-05-13memory cleanup and check fixDaniel Stenberg
2004-05-13check that memory allocation functions truly return good data or bail outDaniel Stenberg
2004-05-13return on memory alloc failDaniel Stenberg
2004-05-13better bailing out in case of no memoryDaniel Stenberg
2004-05-13curl_free() doesn't free(NULL) but just returnsDaniel Stenberg
2004-05-13deal with input arguments as NULLDaniel Stenberg
2004-05-13return CURLDIGEST_NOMEM when a memory function fails to deliverDaniel Stenberg
2004-05-13mark a value as alloced when strdup()ed to prevent memory leaksDaniel Stenberg
2004-05-13bail out when no memory occursDaniel Stenberg
2004-05-13Gisle Vamem reintroduced the verifyconnect() call on windows as well, andDaniel Stenberg
we now use it to provide more info back on connect failures.
2004-05-13Gisle: minor fixDaniel Stenberg
2004-05-13no more Curl_ldap_doneDaniel Stenberg
2004-05-13Added two two missing header files I missed when I removed the noinst_HEADERSDaniel Stenberg
2004-05-13added https.cDaniel Stenberg
2004-05-13basic https fetching scriptDaniel Stenberg
2004-05-13made 'runtests.pl -t' run over all the tests just like other command linesDaniel Stenberg
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.
2004-05-13James Bursa's patch to avoid free(NULL) (mainly because the libcurl memdebugDaniel Stenberg
system thinks free(NULL) is badness)
2004-05-12Check that memory functions return non-NULL or return error.Daniel Stenberg
2004-05-12make sure the returned pointer is NULL when encoding failsDaniel Stenberg
2004-05-12clean up and return better on out of memoryDaniel Stenberg
2004-05-12return NULL on out of memoryDaniel Stenberg
2004-05-12Curl_done() and the protocol-specific conn->curl_done() functions now allDaniel 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-12return faster when we "hit a wall" while printfingDaniel Stenberg
2004-05-12general cleanup to bail out nice and clean when a memory function failsDaniel Stenberg
to deliver
2004-05-12even if Curl_do() fails, we must call Curl_done() to do proper cleaning upDaniel Stenberg
2004-05-12improved cleaning up in case of memory allocation failuresDaniel Stenberg
2004-05-12bail out if we can't allocate the new range string, and make use of aprintf()Daniel Stenberg
instead of using snprintf() + strdup().
2004-05-12Disable memdebug for the allocs done by the app, unless CURLTOOLDEBUG isDaniel 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-12new man pageDaniel Stenberg
2004-05-12use size_t better for buffer and alloc lengthsDaniel Stenberg
2004-05-12removed another jhrg-reference in a commentDaniel Stenberg
2004-05-12Edited comments only.Daniel Stenberg
2004-05-12The Curl_unencode_XXX_write() function take a ssize_t as third argument, soDaniel Stenberg
we typecast on invoke.
2004-05-12Left-over from before the return-code fix. This is probably the code thatDaniel Stenberg
causes xlc and gcc act differently on AIX.
2004-05-11fixed Curl_open() to not leak anything if one malloc() fails, fix byDaniel Stenberg
James Bursa only modified by me.
2004-05-11- Nico Stappenbelt reported that when processing domain and search lines inDaniel 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-11revert the accidentally added use of straceDaniel Stenberg
2004-05-11minor leak in case of error, thanks to "./runtests.pl -n -t 25"Daniel Stenberg
2004-05-11clear up memory on failure a little betterDaniel Stenberg
2004-05-11make the libidn pointer in the version struct a constDaniel Stenberg
2004-05-11they're at least 36 functions nowDaniel Stenberg
2004-05-11updated to reflect reality!Daniel Stenberg
2004-05-11cut out the changelog, it is far from accurate anywayDaniel Stenberg
2004-05-11added curl_global_init_memDaniel Stenberg
2004-05-11curl_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-11Make this source code use our internal *printf().Daniel Stenberg
Also some minor edits.