fce4dccc | 31-Mar-2007 |
Daniel Stenberg |
26 flaws identified by coverity.com |
f2beee20 | 31-Mar-2007 |
Daniel Stenberg |
Since the str2num() function gets called with the 'nextarg' pointer from within the getparameter a lot, we must check it for NULL before accessing the str data. CID 14 of the coverity.com
Since the str2num() function gets called with the 'nextarg' pointer from within the getparameter a lot, we must check it for NULL before accessing the str data. CID 14 of the coverity.com scan
show more ...
|
9d8b22d3 | 31-Mar-2007 |
Daniel Stenberg |
check the correct variable to want about --stderr failures properly CID 18 by the coverity.com scan |
5796c7b1 | 31-Mar-2007 |
Daniel Stenberg |
fix memory leak in case of memory problems CID 16 by coverity.com scan |
dc2ea33e | 31-Mar-2007 |
Daniel Stenberg |
fix a (minor) memory leak in case of error CID 21 in the coverity.com scan |
c1f11770 | 31-Mar-2007 |
Daniel Stenberg |
Pointless to check for non-NULL pointers that already have been dereferenced and they have to be non-NULL long before this check. CID 22 in the coverity.com scan |
7ea90c46 | 31-Mar-2007 |
Daniel Stenberg |
avoid dereferencing a NULL pointer by setting a default word to lookup in case it is missing CID 5 in the coverity.com scan |
4d9e24d1 | 31-Mar-2007 |
Daniel Stenberg |
Better deal with NULL pointers. CID 3 and 4 from the coverity.com scan. |
1f236ba1 | 31-Mar-2007 |
Daniel Stenberg |
"Pixel" fixed a problem that appeared when you used -f with user+password embedded in the URL. |
d27813c2 | 31-Mar-2007 |
Daniel Stenberg |
*** empty log message *** |
453e9b0d | 31-Mar-2007 |
Daniel Stenberg |
add units to a few info |
b8626c3d | 31-Mar-2007 |
Daniel Stenberg |
new URL for wxWidgets binding |
f8d78d57 | 31-Mar-2007 |
Dan Fandrich |
Disable the SSH tests until the libssh2 bugs that causes test hangs are sorted out. |
371a25ee | 31-Mar-2007 |
Daniel Stenberg |
When curl_easy_duphandle() fails because it can't get or make a connection cache, we must make sure not to derefence the NULL pointer... CID 6 coverity.com scan |
e535a71c | 31-Mar-2007 |
Daniel Stenberg |
The info types cannot be checked for explicity by ANDing the types since they have not been properly defined to allow this! Instead of changing the defines and break the ABI/API, I opted to m
The info types cannot be checked for explicity by ANDing the types since they 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
show more ...
|
b9e5fecf | 31-Mar-2007 |
Daniel Stenberg |
Check for a NULL easy->easy_conn in multi_getsock() since it can in fact happen when curl_multi_remove_handle() is called. CID 13. coverity.com scan |
3af08472 | 31-Mar-2007 |
Daniel Stenberg |
Removed check for ftpcode being NULL, as later it is derefenced unconditionally anyway and we can just as well rely on it being valid. CID 12, coverity.com scan |
fdc1b615 | 31-Mar-2007 |
Yang Tse |
sshd might fail to start if given an unsupported configuration option. Try to avoid this problem checking for some possible unsupported options, and avoid using them in the configuration file. |
7fd154f0 | 30-Mar-2007 |
Dan Fandrich |
Fixed some typos in the comments. |
a209c32b | 30-Mar-2007 |
Dan Fandrich |
Resurrected old FTPS error tests 402 and 403 as 404 and 405. |
75db459f | 30-Mar-2007 |
Daniel Stenberg |
Pointer "conn" dereferenced before NULL check. found by coverity.com scan |
74e54c5a | 30-Mar-2007 |
Daniel Stenberg |
Pointer "cur_pos" dereferenced before NULL check, found by coverity.com scan. Removed the NULL check since the pointer must be valid already. |
6fc15157 | 30-Mar-2007 |
Daniel Stenberg |
pointless check for 'out' being non-NULL, since it was badly done and is unnecessary - found by coverity.com scan |
3dcc7202 | 30-Mar-2007 |
Daniel Stenberg |
dead code removed, found by the coverity.com scan |
40981286 | 30-Mar-2007 |
Dan Fandrich |
Added HTTP --max-filesize tests and FTPS CCC failure test. |