From: Peter Eisentraut Date: Sat, 27 Jan 2007 11:48:31 +0000 (+0000) Subject: Add trailing zero byte in Unicode codepoint conversion. X-Git-Tag: REL8_3_BETA1~1417 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d3be7fae115fe04e552d7f90723f9ee81401197a;p=postgresql Add trailing zero byte in Unicode codepoint conversion. --- diff --git a/src/backend/utils/adt/xml.c b/src/backend/utils/adt/xml.c index d9a9ce5bc3..c4c2690e94 100644 --- a/src/backend/utils/adt/xml.c +++ b/src/backend/utils/adt/xml.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/backend/utils/adt/xml.c,v 1.22 2007/01/25 11:53:51 petere Exp $ + * $PostgreSQL: pgsql/src/backend/utils/adt/xml.c,v 1.23 2007/01/27 11:48:31 petere Exp $ * *------------------------------------------------------------------------- */ @@ -1341,7 +1341,7 @@ map_sql_identifier_to_xml_name(char *ident, bool fully_escaped) static char * unicode_to_sqlchar(pg_wchar c) { - static unsigned char utf8string[4]; + static unsigned char utf8string[5]; /* need trailing zero */ if (c <= 0x7F) {