Commit d2ad1a8e authored by Magnus Hagander's avatar Magnus Hagander

Un-break build on ANSI compilers (like msvc) by moving Assert to position

after variable declarations.
parent 43bcf568
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $PostgreSQL: pgsql/src/backend/utils/adt/xml.c,v 1.27 2007/02/11 22:18:15 petere Exp $ * $PostgreSQL: pgsql/src/backend/utils/adt/xml.c,v 1.28 2007/02/13 15:56:12 mha Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -1320,16 +1320,16 @@ is_valid_xml_namechar(pg_wchar c) ...@@ -1320,16 +1320,16 @@ is_valid_xml_namechar(pg_wchar c)
char * char *
map_sql_identifier_to_xml_name(char *ident, bool fully_escaped, bool escape_period) map_sql_identifier_to_xml_name(char *ident, bool fully_escaped, bool escape_period)
{ {
#ifdef USE_LIBXML
StringInfoData buf;
char *p;
/* /*
* SQL/XML doesn't make use of this case anywhere, so it's * SQL/XML doesn't make use of this case anywhere, so it's
* probably a mistake. * probably a mistake.
*/ */
Assert(fully_escaped || !escape_period); Assert(fully_escaped || !escape_period);
#ifdef USE_LIBXML
StringInfoData buf;
char *p;
initStringInfo(&buf); initStringInfo(&buf);
for (p = ident; *p; p += pg_mblen(p)) for (p = ident; *p; p += pg_mblen(p))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment