array_map() needs to guard against a NULL input array. This problem

should go away in 7.1 with the new fmgr, but for 7.0.1 ...
REL7_0_PATCHES
Tom Lane 26 years ago
parent 4b72779f7b
commit e193acd801
  1. 6
      src/backend/utils/adt/arrayfuncs.c

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/arrayfuncs.c,v 1.52 2000/01/26 05:57:12 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/arrayfuncs.c,v 1.52.2.1 2000/05/28 17:43:34 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -1309,6 +1309,10 @@ array_map(ArrayType *v,
char *p;
va_list ap;
/* Need to guard against NULL input array */
if (v == NULL)
return NULL;
/* Large objects not yet supported */
if (ARR_IS_LO(v) == true)
elog(ERROR, "array_map: large objects not supported");

Loading…
Cancel
Save