mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-18 18:44:06 +08:00
parseTypeString wasn't quite paranoid enough.
This commit is contained in:
parent
c1003339d6
commit
13e8be42bd
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/parser/parse_type.c,v 1.47 2002/08/02 18:15:07 tgl Exp $
|
* $Header: /cvsroot/pgsql/src/backend/parser/parse_type.c,v 1.48 2002/08/08 01:22:35 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -461,6 +461,8 @@ parseTypeString(const char *str, Oid *type_id, int32 *typmod)
|
|||||||
elog(ERROR, "parseTypeString: Invalid type name '%s'", str);
|
elog(ERROR, "parseTypeString: Invalid type name '%s'", str);
|
||||||
typecast = (TypeCast *) restarget->val;
|
typecast = (TypeCast *) restarget->val;
|
||||||
if (typecast == NULL ||
|
if (typecast == NULL ||
|
||||||
|
!IsA(typecast, TypeCast) ||
|
||||||
|
typecast->arg == NULL ||
|
||||||
!IsA(typecast->arg, A_Const))
|
!IsA(typecast->arg, A_Const))
|
||||||
elog(ERROR, "parseTypeString: Invalid type name '%s'", str);
|
elog(ERROR, "parseTypeString: Invalid type name '%s'", str);
|
||||||
typename = typecast->typename;
|
typename = typecast->typename;
|
||||||
|
Loading…
Reference in New Issue
Block a user