Index: src/backend/utils/adt/xml.c =================================================================== RCS file: /projects/cvsroot/pgsql/src/backend/utils/adt/xml.c,v retrieving revision 1.27 diff -c -r1.27 xml.c *** src/backend/utils/adt/xml.c 11 Feb 2007 22:18:15 -0000 1.27 --- src/backend/utils/adt/xml.c 13 Feb 2007 15:27:02 -0000 *************** *** 1324,1335 **** * SQL/XML doesn't make use of this case anywhere, so it's * probably a mistake. */ - Assert(fully_escaped || !escape_period); #ifdef USE_LIBXML StringInfoData buf; char *p; initStringInfo(&buf); for (p = ident; *p; p += pg_mblen(p)) --- 1324,1336 ---- * SQL/XML doesn't make use of this case anywhere, so it's * probably a mistake. */ #ifdef USE_LIBXML StringInfoData buf; char *p; + Assert(fully_escaped || !escape_period); + initStringInfo(&buf); for (p = ident; *p; p += pg_mblen(p))