1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-13 07:41:39 +03:00

Throw error on pg_atoi(''), regression adjustments.

This commit is contained in:
Bruce Momjian
2002-08-27 20:29:11 +00:00
parent 7292131c66
commit 73b94657b0
4 changed files with 6 additions and 6 deletions

View File

@ -11,7 +11,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/numutils.c,v 1.51 2002/07/16 18:34:16 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/numutils.c,v 1.52 2002/08/27 20:29:10 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -58,9 +58,9 @@ pg_atoi(char *s, int size, int c)
*/
if (s == (char *) NULL)
elog(ERROR, "pg_atoi: NULL pointer!");
elog(ERROR, "pg_atoi: NULL pointer");
else if (*s == 0)
l = (long) 0;
elog(ERROR, "pg_atoi: zero-length string");
else
l = strtol(s, &badp, 10);