Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-04-12 | Work around an out of memory situation in Curl_ftp_done instead of | Dan Fandrich | |
returning an error code, to allow connections to be torn down cleanly since this function can be called AFTER an OOM situation has already been reached. | |||
2007-04-11 | convenience SIG_ATOMIC_T macro definition | Yang Tse | |
2007-04-11 | Fixed some out of memory handling issues. | Dan Fandrich | |
2007-04-10 | Fixed some out of memory handling issues. | Dan Fandrich | |
2007-04-10 | Ravi Pratap provided fixes for HTTP pipelining | Daniel Stenberg | |
2007-04-10 | Update NTLM flag and description | Yang Tse | |
2007-04-10 | Fixed an out of memory handling issue. | Dan Fandrich | |
2007-04-09 | VC8+ (VS2005+) has C99 variadic macro support | Yang Tse | |
2007-04-08 | fix out of memory handling issue | Yang Tse | |
2007-04-08 | Nick Zitzmann did ssh.c cleanups | Daniel Stenberg | |
2007-04-07 | fix out of memory handling issue | Yang Tse | |
2007-04-07 | fix out of memory handling issue | Yang Tse | |
2007-04-07 | fix compiler warning | Yang Tse | |
2007-04-06 | fix out of memory handling issue | Yang Tse | |
2007-04-06 | Fixed a few memory leaks in OOM conditions. | Dan Fandrich | |
Made libssh2 logging more verbose when debugging is enabled. | |||
2007-04-05 | runtests -t discovered this out of memory handling issues | Yang Tse | |
2007-04-04 | Fixes some more out of memory handling bugs. | Dan Fandrich | |
2007-04-04 | Fixed file handle leak in OOM condition. | Dan Fandrich | |
2007-04-04 | move WinSock definitions of EBADF, EINTR, EINVAL and EAFNOSUPPORT to ↵ | Yang Tse | |
setup_once.h | |||
2007-04-04 | Fixed a memory leak and improper shutdown on SFTP post-quote command failure. | Dan Fandrich | |
2007-04-03 | Rob Jones fixed better #ifdef'ing for a bunch of #include lines. | Daniel Stenberg | |
2007-04-03 | update copyright year | Yang Tse | |
2007-04-03 | fix MSDOS symbol check | Yang Tse | |
2007-04-03 | recover code simplification lost with last commit | Yang Tse | |
2007-04-03 | DOS targets do have setmode(). | Gisle Vanem | |
2007-04-02 | Nick Zitzmann made CURLOPT_POSTQUOTE work for SFTP as well. | Daniel Stenberg | |
2007-04-02 | fix compiler warning | Yang Tse | |
2007-04-02 | fix compiler warning | Yang Tse | |
2007-04-01 | Robert Iakobashvili made curl_multi_remove_handle() a lot faster when many | Daniel Stenberg | |
easy handles are added to a multi handle, by avoiding the looping over all the handles to find which one to remove. | |||
2007-04-01 | Matt Kraai provided a patch that makes curl build on QNX 6 fine again. Mostly | Daniel Stenberg | |
by letting configure check for setmode and ifdef on HAVE_SETMODE. NOTE: non- configure platforms that havve setmode() needs their hard-coded config.h files fixed. I fixed the src/config-win32.h. | |||
2007-03-31 | Pointless to check for non-NULL pointers that already have been dereferenced | Daniel Stenberg | |
and they have to be non-NULL long before this check. CID 22 in the coverity.com scan | |||
2007-03-31 | avoid dereferencing a NULL pointer by setting a default word to lookup in case | Daniel Stenberg | |
it is missing CID 5 in the coverity.com scan | |||
2007-03-31 | Better deal with NULL pointers. | Daniel Stenberg | |
CID 3 and 4 from the coverity.com scan. | |||
2007-03-31 | *** empty log message *** | Daniel Stenberg | |
2007-03-31 | When curl_easy_duphandle() fails because it can't get or make a connection | Daniel Stenberg | |
cache, we must make sure not to derefence the NULL pointer... CID 6 coverity.com scan | |||
2007-03-31 | The info types cannot be checked for explicity by ANDing the types since they | Daniel Stenberg | |
have not been properly defined to allow this! Instead of changing the defines and break the ABI/API, I opted to modify the code to check for exact type matches. CID 10 coverity.com scan | |||
2007-03-31 | Check for a NULL easy->easy_conn in multi_getsock() since it can in fact | Daniel Stenberg | |
happen when curl_multi_remove_handle() is called. CID 13. coverity.com scan | |||
2007-03-31 | Removed check for ftpcode being NULL, as later it is derefenced unconditionally | Daniel Stenberg | |
anyway and we can just as well rely on it being valid. CID 12, coverity.com scan | |||
2007-03-30 | Pointer "conn" dereferenced before NULL check. found by coverity.com scan | Daniel Stenberg | |
2007-03-30 | Pointer "cur_pos" dereferenced before NULL check, found by coverity.com scan. | Daniel Stenberg | |
Removed the NULL check since the pointer must be valid already. | |||
2007-03-30 | dead code removed, found by the coverity.com scan | Daniel Stenberg | |
2007-03-30 | Don't tear down the ftp connection if the maximum filesize was exceeded | Dan Fandrich | |
and added tests 290 and 291 to check. | |||
2007-03-29 | Send an EOF message before closing a channel, as recommended by RFC4254. | Dan Fandrich | |
Enable libssh2 tracing when ssh debugging is turned on. | |||
2007-03-29 | fix compiler warning | Yang Tse | |
2007-03-29 | fix error introduced in last commit | Yang Tse | |
2007-03-28 | fix compiler warning | Yang Tse | |
2007-03-28 | Improve detection of socket events which allow a further recv() call | Yang Tse | |
to complete with no delay and actually find out what happened with the socket. As well as detection of socket send()able condition. This also allows removal of a Cygwin specific block of code. | |||
2007-03-28 | djgpp uses gcc which has varadic macros. | Gisle Vanem | |
2007-03-28 | Fix compiler warning. | Gisle Vanem | |
2007-03-28 | Simplified code around 'tld_errmsg' a bit. | Gisle Vanem | |