Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
The effective result of this commit is revision 1.72 plus two changed lines. These
can be viewed in http://cool.haxx.se/cvs.cgi/curl/lib/mprintf.c.diff?r1=1.72&r2=1.77
|
|
|
|
|
|
|
|
extension on x86_64.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Improve HAVE_LONGLONG symbol description.
|
|
|
|
header
|
|
previously the second %s would wrongly get the numerical argument that is used
for the variable precision for the first %s...
|
|
consistency
|
|
|
|
|
|
since they're already included through "setup.h".
|
|
|
|
could very well cause a negate number get passed in and thus cause reading
outside of the array usually used for this purpose.
We avoid this by using the uppercase macro versions introduced just now that
does some extra crazy typecasts to avoid byte codes > 127 to cause negative
int values.
|
|
|
|
So avoid using x_was_used().
|
|
|
|
VS2005.
|
|
|
|
|
|
Confirmed by Paul Nolan.
|
|
|
|
|
|
precaution to prevent mistakes to lead to buffer overflows.
|
|
linked list for name resolved data, even on hosts/systems with only IPv4
stacks as this simplifies a lot of code.
|
|
|
|
memory.h is included everywhere for this.
|
|
previously they could return a piece of the string, making it impossible
for the caller to detect errors.
|
|
|
|
|
|
make strtol() returns get stored in long variables
don't mix size_t with int
|
|
|
|
|
|
|
|
|
|
can use a 64bit type with MSVC that is a long long equivalent.
|
|
int to various types
|