Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-10-20 | remove debug-code which zero-filled some structures before free()ing them | Yang Tse | |
2008-10-20 | A few prototypes shouldn't be defined if SSL is disabled. | Dan Fandrich | |
2008-10-20 | *** empty log message *** | Yang Tse | |
2008-10-20 | All the coverity.com issues have no been taken care of. | Daniel Stenberg | |
2008-10-20 | added a NULL pointer check for the name field as it can in fact be NULL when | Daniel Stenberg | |
dereferenced here, if the app passes in a funny combo. Detected by coverity.com | |||
2008-10-20 | some more temporary magic for the icc seg-fault issue | Yang Tse | |
2008-10-19 | messages initially intended only for debug purposes, now become permanent | Yang Tse | |
since these are extremely useful when compiler rejects a set of options. | |||
2008-10-19 | fix compiler warning | Yang Tse | |
2008-10-19 | Fixed potential memory leak in OOM situations. Detected by coverity.com | Daniel Stenberg | |
2008-10-19 | oops | Yang Tse | |
2008-10-19 | dumpeasycode() uses warnf() which uses config->errors so we must not close | Daniel Stenberg | |
that before dumpeasycode() is called. Found by coverity.com | |||
2008-10-19 | Removed dead code, identified by coverity.com. | Daniel Stenberg | |
2008-10-19 | attempt to fix or allow further detection of an elusive icc SIGSEGV | Yang Tse | |
2008-10-19 | clarified an argument's situation due to a false positive alert pointed out | Daniel Stenberg | |
by coverity.com | |||
2008-10-19 | Fixed a compiler warning in the CURL_DISABLE_HTTP case | Dan Fandrich | |
2008-10-19 | attempt to fix compiler warning relative to potential misaligned data access | Yang Tse | |
2008-10-18 | Removed some more code in the CURL_DISABLE_HTTP case | Dan Fandrich | |
2008-10-18 | Removed a line of dead code (discovered by Coverity) | Dan Fandrich | |
2008-10-17 | Forgot it's a struct | Dan Fandrich | |
2008-10-17 | Fixed a compile error reported by Albert Chin on AIX and IRIX when using | Dan Fandrich | |
GTLS. | |||
2008-10-17 | fix compiler warning | Yang Tse | |
2008-10-17 | fix missing double-quotes | Yang Tse | |
2008-10-17 | protect against 'use after free' or race condition | Yang Tse | |
2008-10-17 | oops ;-) | Yang Tse | |
2008-10-17 | oops | Yang Tse | |
2008-10-17 | fix syntax error | Daniel Stenberg | |
2008-10-17 | Introduce new options CURLOPT_PROXY{USERNAME, PASSWORD} in OS400 code and ↵ | Patrick Monnerat | |
RPG binding. | |||
2008-10-17 | fix compiler warning | Yang Tse | |
2008-10-17 | OOM condition fix | Yang Tse | |
2008-10-17 | Charles Hardin made adig support a regular numerical dotted IP address for the | Daniel Stenberg | |
-s option as well. | |||
2008-10-17 | 185 - CURLOPT_PROXYUSER etc | Daniel Stenberg | |
done! | |||
2008-10-17 | After having studied one of the coverity.com reports at length last night, I | Daniel Stenberg | |
decided it was a good idea to properly document my thoughts in a comment near the code that was identified as a possible flaw. A false positive as far as I can see. | |||
2008-10-17 | remove some spurious line-endings | Yang Tse | |
2008-10-17 | portability fix to avoid memory alignment problems | Yang Tse | |
2008-10-16 | Return an error when a proxy option is set when configured with | Dan Fandrich | |
--disable-proxy mode. Removed some unnecessary prototypes. | |||
2008-10-16 | Added missing HTTP proxy and other keywords | Dan Fandrich | |
2008-10-16 | CURLOPT_POST301 => CURLOPT_POSTREDIR | Dan Fandrich | |
2008-10-16 | don't segfault when NULL is passed in to CURLOPT_USERPWD or | Daniel Stenberg | |
CURLOPT_PROXYUSERPWD | |||
2008-10-16 | - Igor Novoseltsev added CURLOPT_PROXYUSER and CURLOPT_PROXYPASSWORD that then | Daniel Stenberg | |
make CURLOPT_PROXYUSERPWD sort of deprecated. The primary motive for adding these new options is that they have no problems with the colon separator that the CURLOPT_PROXYUSERPWD option does. | |||
2008-10-16 | compile the library file strequal.c to get the Curl_raw_equal function as | Daniel Stenberg | |
that's not exported by the lib | |||
2008-10-16 | mention the openssl requirement for the certinfo data | Daniel Stenberg | |
2008-10-16 | correct version number for the certinfo addition | Daniel Stenberg | |
2008-10-16 | Added CURLINFO_CERTINFO | Daniel Stenberg | |
2008-10-16 | I renamed the function | Daniel Stenberg | |
2008-10-16 | Renamed Curl_ascii_equal to Curl_raw_equal and bugfixed the my_toupper function | Daniel Stenberg | |
used in strequal.c so now all test cases run fine for me again. | |||
2008-10-16 | Curl_ascii_equal() must not assume that the string is actually ASCII (so ↵ | Daniel Stenberg | |
that a-z are consecutive and with a 0x20 "distance" to the uppercase letter), since we do support EBCDIC as well. Thus I replaced the macro with a (larger) switch case. I better change the function name... | |||
2008-10-16 | some more temporary magic for the icc seg-fault issue | Yang Tse | |
2008-10-15 | fix warning | Daniel Stenberg | |
2008-10-15 | - Pascal Terjan filed bug #2154627 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=2154627) which pointed out that libcurl uses strcasecmp() in multiple places where it causes failures when the Turkish locale is used. This is because 'i' and 'I' isn't the same letter so strcasecmp() on those letters are different in Turkish than in English (or just about all other languages). I thus introduced a totally new internal function in libcurl (called Curl_ascii_equal) for doing case insentive comparisons for english-(ascii?) style strings that thus will make "file" and "FILE" match even if the Turkish locale is selected. | |||
2008-10-15 | Ensure that shell variable contents which have active meaning | Yang Tse | |
to the shell echo command are not interpreted when trying to remove extra whitespace from shell variable content. |