Add missing casts to unsigned char in recently-added isspace() calls.

This commit is contained in:
Tom Lane 2004-04-01 22:51:31 +00:00
parent 7df21fe8a8
commit b3fcc816ae
3 changed files with 9 additions and 9 deletions

View File

@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/adt/float.c,v 1.101 2004/03/15 03:29:22 tgl Exp $ * $PostgreSQL: pgsql/src/backend/utils/adt/float.c,v 1.102 2004/04/01 22:51:31 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -276,7 +276,7 @@ float4in(PG_FUNCTION_ARGS)
} }
/* skip leading whitespace */ /* skip leading whitespace */
while (*num != '\0' && isspace(*num)) while (*num != '\0' && isspace((unsigned char) *num))
num++; num++;
errno = 0; errno = 0;
@ -319,7 +319,7 @@ float4in(PG_FUNCTION_ARGS)
} }
/* skip trailing whitespace */ /* skip trailing whitespace */
while (*endptr != '\0' && isspace(*endptr)) while (*endptr != '\0' && isspace((unsigned char) *endptr))
endptr++; endptr++;
/* if there is any junk left at the end of the string, bail out */ /* if there is any junk left at the end of the string, bail out */
@ -441,7 +441,7 @@ float8in(PG_FUNCTION_ARGS)
} }
/* skip leading whitespace */ /* skip leading whitespace */
while (*num != '\0' && isspace(*num)) while (*num != '\0' && isspace((unsigned char) *num))
num++; num++;
errno = 0; errno = 0;
@ -484,7 +484,7 @@ float8in(PG_FUNCTION_ARGS)
} }
/* skip trailing whitespace */ /* skip trailing whitespace */
while (*endptr != '\0' && isspace(*endptr)) while (*endptr != '\0' && isspace((unsigned char) *endptr))
endptr++; endptr++;
/* if there is any junk left at the end of the string, bail out */ /* if there is any junk left at the end of the string, bail out */

View File

@ -7,7 +7,7 @@
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/adt/int8.c,v 1.52 2004/03/11 02:11:13 neilc Exp $ * $PostgreSQL: pgsql/src/backend/utils/adt/int8.c,v 1.53 2004/04/01 22:51:31 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -114,7 +114,7 @@ scanint8(const char *str, bool errorOK, int64 *result)
} }
/* allow trailing whitespace, but not other trailing chars */ /* allow trailing whitespace, but not other trailing chars */
while (*ptr != '\0' && isspace(*ptr)) while (*ptr != '\0' && isspace((unsigned char) *ptr))
ptr++; ptr++;
if (*ptr != '\0') if (*ptr != '\0')

View File

@ -10,7 +10,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/adt/numutils.c,v 1.62 2004/03/11 02:11:13 neilc Exp $ * $PostgreSQL: pgsql/src/backend/utils/adt/numutils.c,v 1.63 2004/04/01 22:51:31 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -88,7 +88,7 @@ pg_atoi(char *s, int size, int c)
* Skip any trailing whitespace; if anything but whitespace * Skip any trailing whitespace; if anything but whitespace
* remains before the terminating character, bail out * remains before the terminating character, bail out
*/ */
while (*badp != c && isspace(*badp)) while (*badp != c && isspace((unsigned char) *badp))
badp++; badp++;
if (*badp != c) if (*badp != c)