Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2007-03-27 | added variadic macro stuff. | Gunter Knauf | |
2007-03-27 | Update message | Yang Tse | |
2007-03-27 | New Internal wrapper function Curl_select() around select (2), it | Yang Tse | |
uses poll() when a fine poll() is available, so now libcurl can be built without select() support at all if a fine poll() is available. | |||
2007-03-27 | don't retry select() call upon unrecoverable error EBADF | Yang Tse | |
2007-03-27 | Platforms that lack autotools support should define HAVE_VARIADIC_MACROS_C99 | Yang Tse | |
and/or HAVE_VARIADIC_MACROS_GCC for specific compiler versions that support variadic macros with C99 style and/or old gcc style in their specific config.h file. If previous definitions are not done, even when aplicable, and --disable-verbose is used, the fallback (void) method will be used to define infof, avoiding the inclusion of unwanted strings in the resulting library/executable. | |||
2007-03-26 | Internal function Curl_select() renamed to Curl_socket_ready() | Yang Tse | |
2007-03-26 | changed link lib order to make nlmconv happy. | Gunter Knauf | |
2007-03-26 | added CVS Id tag. | Gunter Knauf | |
2007-03-26 | fixed build to use compiler-default lib extension. | Gunter Knauf | |
2007-03-25 | - Daniel Johnson fixed multi code to traverse the easy handle list properly. | Daniel Stenberg | |
A left-over bug from the February 21 fix. | |||
2007-03-25 | fix compiler warning | Yang Tse | |
2007-03-25 | fix compiler warning | Yang Tse | |
2007-03-25 | fix compiler warning | Yang Tse | |
2007-03-24 | Fixed a couple of compile problems. | Dan Fandrich | |
2007-03-24 | Fixed a memory leak when specifying a proxy with a file: URL and added | Dan Fandrich | |
test case 288 to verify it. |