mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 09:52:27 -04:00
cast a suitably range checked long to isc_uint8_t when assigned to isc_uint8_t
This commit is contained in:
parent
f4c0131a46
commit
98c29e4bd3
1 changed files with 2 additions and 2 deletions
|
|
@ -70,7 +70,7 @@
|
|||
|
||||
#if defined(LIBC_SCCS) && !defined(lint)
|
||||
static char sccsid[] = "@(#)inet_addr.c 8.1 (Berkeley) 6/17/93";
|
||||
static char rcsid[] = "$Id: inet_aton.c,v 1.6 1999/07/16 00:43:45 halley Exp $";
|
||||
static char rcsid[] = "$Id: inet_aton.c,v 1.7 1999/10/11 20:16:33 tale Exp $";
|
||||
#endif /* LIBC_SCCS and not lint */
|
||||
|
||||
#include <config.h>
|
||||
|
|
@ -140,7 +140,7 @@ isc_net_aton(const char *cp, struct in_addr *addr)
|
|||
*/
|
||||
if (pp >= parts + 3 || val > 0xff)
|
||||
return (0);
|
||||
*pp++ = val;
|
||||
*pp++ = (isc_uint8_t)val;
|
||||
c = *++cp;
|
||||
} else
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in a new issue