aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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.
2004-05-11Added recent events to the logDaniel Stenberg
2004-05-11more changes, more news, more peopleDaniel Stenberg
2004-05-11another official download mirrorDaniel Stenberg
2004-05-11new attempt at an improved DSP-file generationDaniel Stenberg
2004-05-10slightly better dealing of bad mem situationsDaniel Stenberg
2004-05-10Moved the fetching of the list of matching cookies to make it easier to freeDaniel Stenberg
that list in case something goes wrong in the function and we must bail out. Courtesy of the torture testing.
2004-05-10curl_slist_append() fixed to clear up properly if a memory function failsDaniel Stenberg
2004-05-10better detect if/when curl_slist_append() returns failure, and bail outDaniel Stenberg
accordingly
2004-05-10if a malloc fails, clear up the memory and return failureDaniel Stenberg
2004-05-10typoDaniel Stenberg
2004-05-10the 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-10better detection for when add_buffer() returns failure, and return when thatDaniel Stenberg
happens
2004-05-10Curl_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-10checkpasswd() prevents segfault by checking that input argument is non-NULLDaniel Stenberg
2004-05-10James 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-10make Curl_llist_insert_next() fail properly if malloc() failsDaniel Stenberg
2004-05-10better checking that strdup() worksDaniel Stenberg
2004-05-10Luca fixed the nc= in the digest line since it apparantly should not haveDaniel Stenberg
quotes...
2004-05-10James Bursa added better error checking for failer memory calls whenDaniel Stenberg
building formposts
2004-05-10build curllib.dsp from theseDaniel Stenberg
2004-05-10don't use -i when checking for our own serverDaniel Stenberg
2004-05-07James' and Gisle' reports/fixesDaniel Stenberg
2004-05-07James Bursa changed two error message to use the display-name instead of theDaniel Stenberg
internally-used name.
2004-05-07James Bursa's fix to make this deal with malloc(0) as OK to free()Daniel Stenberg
2004-05-07We don't support any long protocol names so we can use a smaller buffer.Daniel Stenberg
Also, make sure we have room for the trailing zero, only scan to size-1. Gisle Vanem reported.
2004-05-07count the formdata size using a 64bit size if avaialbleDaniel Stenberg
2004-05-07Made the lib/curllib.dsp file get generated automaticlyDaniel Stenberg
2004-05-07don't use a magic define nameDaniel Stenberg
2004-05-07This file is now generated at dist-time.Daniel Stenberg
2004-05-07Generate curllib.dsp on dist.time from msvcproj.head msvcproj.foot and theDaniel Stenberg
known source files. Not actually verified to work yet.
2004-05-07get the display host name properlyDaniel Stenberg
2004-05-06removed two odd commentsDaniel Stenberg
2004-05-06little fixesDaniel Stenberg
2004-05-06removed the warning if libidn isn't foundDaniel Stenberg
2004-05-06very minor output changeDaniel Stenberg
2004-05-06simplied the creation of new urlsDaniel Stenberg
2004-05-06%ld for longDaniel Stenberg
2004-05-06int/long fixDaniel Stenberg
2004-05-06Michael Benedict brought a fix that fills in the errorbuffer properlyDaniel Stenberg
when ares fails to resolve a name. This was fixed before but somehow has fallen out again!
2004-05-06typo AGAINDaniel Stenberg
2004-05-06When using the icc compiler, we also ignore remark #1418 "external definitionDaniel Stenberg
with no prior declaration" since this is a habit we have in the code.
2004-05-06printf %s with plain 'char *', not unsigned ones to silence icc's pickyDaniel Stenberg
warnings
2004-05-06if no strerror_r prototype is found, we provide our own to prevent pickyDaniel Stenberg
compilers to warn
2004-05-06removed the unused 'len' variable, made use of the ptr pointer even if noDaniel Stenberg
extra lib is used to prevent compiler warnings ("variable set but not used") on that case