mirror of
https://github.com/mirror/wget.git
synced 2025-01-08 19:30:41 +08:00
[svn] Delete unreachable statement in aprintf.
This commit is contained in:
parent
cf994330a3
commit
9c58e3c1d2
@ -1,3 +1,7 @@
|
|||||||
|
2005-04-24 Hrvoje Niksic <hniksic@xemacs.org>
|
||||||
|
|
||||||
|
* utils.c (aprintf): Delete unreachable statement.
|
||||||
|
|
||||||
2005-04-24 Hrvoje Niksic <hniksic@xemacs.org>
|
2005-04-24 Hrvoje Niksic <hniksic@xemacs.org>
|
||||||
|
|
||||||
* host.c (cmp_prefer_ipv4): New function.
|
* host.c (cmp_prefer_ipv4): New function.
|
||||||
|
@ -211,7 +211,6 @@ aprintf (const char *fmt, ...)
|
|||||||
size <<= 1; /* twice the old size */
|
size <<= 1; /* twice the old size */
|
||||||
str = xrealloc (str, size);
|
str = xrealloc (str, size);
|
||||||
}
|
}
|
||||||
return NULL; /* unreached */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Concatenate the NULL-terminated list of string arguments into
|
/* Concatenate the NULL-terminated list of string arguments into
|
||||||
|
Loading…
Reference in New Issue
Block a user