Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2004-05-07 | James' and Gisle' reports/fixes | Daniel Stenberg | |
2004-05-07 | James Bursa changed two error message to use the display-name instead of the | Daniel Stenberg | |
internally-used name. | |||
2004-05-07 | James Bursa's fix to make this deal with malloc(0) as OK to free() | Daniel Stenberg | |
2004-05-07 | We 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-07 | count the formdata size using a 64bit size if avaialble | Daniel Stenberg | |
2004-05-07 | Made the lib/curllib.dsp file get generated automaticly | Daniel Stenberg | |
2004-05-07 | don't use a magic define name | Daniel Stenberg | |
2004-05-07 | This file is now generated at dist-time. | Daniel Stenberg | |
2004-05-07 | Generate curllib.dsp on dist.time from msvcproj.head msvcproj.foot and the | Daniel Stenberg | |
known source files. Not actually verified to work yet. | |||
2004-05-07 | get the display host name properly | Daniel Stenberg | |
2004-05-06 | removed two odd comments | Daniel Stenberg | |
2004-05-06 | little fixes | Daniel Stenberg | |
2004-05-06 | removed the warning if libidn isn't found | Daniel Stenberg | |
2004-05-06 | very minor output change | Daniel Stenberg | |
2004-05-06 | simplied the creation of new urls | Daniel Stenberg | |
2004-05-06 | %ld for long | Daniel Stenberg | |
2004-05-06 | int/long fix | Daniel Stenberg | |
2004-05-06 | Michael Benedict brought a fix that fills in the errorbuffer properly | Daniel Stenberg | |
when ares fails to resolve a name. This was fixed before but somehow has fallen out again! | |||
2004-05-06 | typo AGAIN | Daniel Stenberg | |
2004-05-06 | When using the icc compiler, we also ignore remark #1418 "external definition | Daniel Stenberg | |
with no prior declaration" since this is a habit we have in the code. | |||
2004-05-06 | printf %s with plain 'char *', not unsigned ones to silence icc's picky | Daniel Stenberg | |
warnings | |||
2004-05-06 | if no strerror_r prototype is found, we provide our own to prevent picky | Daniel Stenberg | |
compilers to warn | |||
2004-05-06 | removed the unused 'len' variable, made use of the ptr pointer even if no | Daniel Stenberg | |
extra lib is used to prevent compiler warnings ("variable set but not used") on that case | |||
2004-05-06 | typecast the unsigned long to plain long to prevent compiler warnings | Daniel Stenberg | |
2004-05-06 | unused variable removed | Daniel Stenberg | |
2004-05-06 | use %ld to printf now.tv_sec | Daniel Stenberg | |
2004-05-06 | curlx.h is a header to add to the release archive(s) | Daniel Stenberg | |
2004-05-05 | fixed typo | Daniel Stenberg | |
2004-05-05 | Temporary disable the logic that runs gdb on a core dump, as it can't blindly | Daniel Stenberg | |
assume that the curl file is a proper binary, it is often a script file produced by libtool. |