1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
* resolv/inet_net_ntop.c (inet_net_ntop_ipv4): If BITS is zero
	account for added '0'.
This commit is contained in:
Ulrich Drepper
1999-10-02 07:09:48 +00:00
parent 20cc4c87c0
commit a465f6bdd2
2 changed files with 4 additions and 0 deletions

View File

@ -98,6 +98,7 @@ inet_net_ntop_ipv4(src, bits, dst, size)
if (size < sizeof "0")
goto emsgsize;
*dst++ = '0';
--size;
*dst = '\0';
}