Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | remove dead code portion inoperative long time ago | Yang Tse | 2008-09-13 | 1 | -7/+0 | |
| | ||||||
* | fix print formatting string directives | Yang Tse | 2008-09-04 | 1 | -4/+4 | |
| | ||||||
* | Move the CURLDEBUG check after setup.h so it can be set there if necessary. | Dan Fandrich | 2008-05-14 | 1 | -1/+1 | |
| | ||||||
* | if () => if() | Daniel Stenberg | 2007-11-07 | 1 | -4/+4 | |
| | | | | | while () => while() and some other minor re-indentings | |||||
* | Fix getsockname argument type | Patrick Monnerat | 2007-08-08 | 1 | -1/+4 | |
| | | | | Improve "universal" alignment type in struct memdebug | |||||
* | Using fdopen() is a more correct way to implement the CURLOPT_NEW_FILE_PREMS | James Housley | 2007-06-28 | 1 | -0/+10 | |
| | | | | | file.c, but the debug interface was missing. This adds the routines needed to make the memory debuging work for fdopen(). | |||||
* | Added call to setvbuf (disabled by default for speed) to flush the | Dan Fandrich | 2007-05-15 | 1 | -0/+4 | |
| | | | | | memdebug log file after every line and avoid losing the last few log entries if curl crashes. | |||||
* | curlassert macro replaced with DEBUGASSERT macro defined in setup_once.h | Yang Tse | 2007-02-21 | 1 | -3/+3 | |
| | ||||||
* | use macros ERRNO, SET_ERRNO(), SOCKERRNO and SET_SOCKERRNO() for errno handling | Yang Tse | 2007-02-16 | 1 | -2/+2 | |
| | ||||||
* | Prevent multiple initialization of memdebug configuration variables. | Yang Tse | 2006-11-05 | 1 | -9/+13 | |
| | | | | | | | This was possible on debug c-ares enabled builds when both CURL_MEMDEBUG and CARES_MEMDEBUG environment variables were set. Leading to a file handle leak even when both variables had the same value, and wierd test suite results when different. | |||||
* | use %p to printf pointers since %x doesn't work properly on tru64 for this | Daniel Stenberg | 2005-06-30 | 1 | -1/+1 | |
| | | | | (and besides, we should be using the same %-code for all pointers) | |||||
* | Updated the copyright year since changes have been this year. | Daniel Stenberg | 2005-03-31 | 1 | -1/+1 | |
| | ||||||
* | Set errno = ENOMEM on faild countcheck(). | Gisle Vanem | 2004-10-13 | 1 | -0/+1 | |
| | ||||||
* | Source cleanups. The major one being that we now _always_ use a Curl_addrinfo | Daniel Stenberg | 2004-06-24 | 1 | -10/+10 | |
| | | | | | linked list for name resolved data, even on hosts/systems with only IPv4 stacks as this simplifies a lot of code. | |||||
* | curl_global_init_mem() allows the memory functions to be replaced. | Daniel Stenberg | 2004-05-11 | 1 | -4/+5 | |
| | | | | memory.h is included everywhere for this. | |||||
* | Gisle fixed: don't reference 'mem' if it's NULL. | Daniel Stenberg | 2004-05-05 | 1 | -4/+5 | |
| | ||||||
* | make the memlimit final NULL return get written to stderr as wella | Daniel Stenberg | 2004-05-05 | 1 | -0/+3 | |
| | ||||||
* | store size as size_t | Daniel Stenberg | 2004-03-08 | 1 | -4/+4 | |
| | | | | use %zd when outputting size_t | |||||
* | Gisle Vanem's added support calloc()-debugging and outputting mode for | Daniel Stenberg | 2004-02-26 | 1 | -2/+28 | |
| | | | | fopen() as well. | |||||
* | Some compilers warn on completely empty source files, we provide a blank | Daniel Stenberg | 2004-02-20 | 1 | -1/+4 | |
| | | | | one to prevent that. | |||||
* | Made curl_accept() take a 'void *' instead of 'socklen_t *' in the 3rd | Daniel Stenberg | 2004-02-18 | 1 | -1/+2 | |
| | | | | | argument to also not force the casual includer to know about the socklen_t type. | |||||
* | Modified curl_accept() to take a 'void *' in the 2nd argument instead of | Daniel Stenberg | 2004-02-18 | 1 | -1/+2 | |
| | | | | | sockaddr *. This has the added benefit that source files that include memdebug.h doesn't have to know about "sockaddr". | |||||
* | Make realloc() support NULL as pointer. Made to allow us to use these routines | Daniel Stenberg | 2004-02-16 | 1 | -3/+6 | |
| | | | | to memdebug the ares stuff as well. | |||||
* | Dan Fandrich's cleanup patch to make pedantic compiler options cause less | Daniel Stenberg | 2004-01-29 | 1 | -3/+5 | |
| | | | | warnings. Minor edits by me. | |||||
* | updated year in the copyright string | Daniel Stenberg | 2004-01-07 | 1 | -1/+1 | |
| | ||||||
* | use the curlassert() instead of custom checks | Daniel Stenberg | 2003-12-16 | 1 | -16/+5 | |
| | ||||||
* | don't log failed socket() calls | Daniel Stenberg | 2003-11-13 | 1 | -1/+1 | |
| | ||||||
* | Gisle Vanem's IPv6-on-Windows patch applied! | Daniel Stenberg | 2003-10-14 | 1 | -4/+0 | |
| | ||||||
* | allow out-of-memory testing by setting a limit. That number of memory | Daniel Stenberg | 2003-08-14 | 1 | -1/+45 | |
| | | | | allocation calls will succeed, the following will return NULL! | |||||
* | use CURLDEBUG instead of MALLOCDEBUG for preprocessor conditions | Daniel Stenberg | 2003-06-26 | 1 | -2/+2 | |
| | ||||||
* | removed the local variables for emacs and vim, use the new sample.emacs | Daniel Stenberg | 2003-01-29 | 1 | -8/+0 | |
| | | | | way for emacs, and vim users should provide a similar non-polluting style | |||||
* | copyright year update in the source header | Daniel Stenberg | 2003-01-16 | 1 | -1/+1 | |
| | ||||||
* | updated source code boilerplate/header | Daniel Stenberg | 2002-09-03 | 1 | -7/+7 | |
| | ||||||
* | James Cone's efforts to add another netrc parsing "mode" | Daniel Stenberg | 2002-05-21 | 1 | -1/+3 | |
| | ||||||
* | copyright string (year) update | Daniel Stenberg | 2002-03-19 | 1 | -1/+1 | |
| | ||||||
* | detect fclose(NULL) | Daniel Stenberg | 2002-03-08 | 1 | -1/+9 | |
| | ||||||
* | more fancy alloc, we store the size in each allocated block so that we | Daniel Stenberg | 2002-02-28 | 1 | -15/+31 | |
| | | | | can destroy the full allocated area just before we free it | |||||
* | always allocates at least 64 bytes for real, and damages them before free | Daniel Stenberg | 2002-02-28 | 1 | -8/+30 | |
| | ||||||
* | Nico Baggus' VMS tweaks | Daniel Stenberg | 2002-02-20 | 1 | -1/+4 | |
| | ||||||
* | fill memory with junk on malloc() | Daniel Stenberg | 2001-11-28 | 1 | -0/+3 | |
| | ||||||
* | the malloc debug system only logs data if the logfile FILE * is set, which | Daniel Stenberg | 2001-10-17 | 1 | -19/+30 | |
| | | | | makes it easier to disable debug output when built with debug functions | |||||
* | looks nicer and is better compatible with older vim versions | Sterling Hughes | 2001-10-11 | 1 | -2/+2 | |
| | ||||||
* | Added formatting sections for emacs and vim | Sterling Hughes | 2001-09-07 | 1 | -0/+8 | |
| | ||||||
* | curl_memdebug takes a const argument now | Daniel Stenberg | 2001-08-14 | 1 | -1/+1 | |
| | ||||||
* | const-ified lots of function arguments | Daniel Stenberg | 2001-08-14 | 1 | -7/+8 | |
| | ||||||
* | uses socklen_t now | Daniel Stenberg | 2001-03-09 | 1 | -1/+1 | |
| | ||||||
* | strdup() takes a const char * now | Daniel Stenberg | 2001-03-02 | 1 | -1/+1 | |
| | ||||||
* | Internal symbols that aren't static are now prefixed with 'Curl_' | Daniel Stenberg | 2001-01-05 | 1 | -1/+1 | |
| | ||||||
* | dual-license fix | Daniel Stenberg | 2001-01-03 | 1 | -28/+11 | |
| | ||||||
* | include unistd.h if present to prevent compiler warnings on close() | Daniel Stenberg | 2000-12-19 | 1 | -0/+4 | |
| |