From f05529365346fcaf3afe1a07e5c4ca7350cb2521 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Sun, 16 May 2004 01:20:17 +0000 Subject: a couple of large static variable which should really not be declared as * catalog.c: a couple of large static variable which should really not be declared as such cluttered the .bss section. Daniel --- catalog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'catalog.c') diff --git a/catalog.c b/catalog.c index 711761e7..7c328f2a 100644 --- a/catalog.c +++ b/catalog.c @@ -3510,7 +3510,7 @@ xmlCatalogLocalResolveURI(void *catalogs, const xmlChar *URI) { const xmlChar * xmlCatalogGetSystem(const xmlChar *sysID) { xmlChar *ret; - static xmlChar result[1000]; + xmlChar result[1000]; static int msg = 0; if (!xmlCatalogInitialized) @@ -3554,7 +3554,7 @@ xmlCatalogGetSystem(const xmlChar *sysID) { const xmlChar * xmlCatalogGetPublic(const xmlChar *pubID) { xmlChar *ret; - static xmlChar result[1000]; + xmlChar result[1000]; static int msg = 0; if (!xmlCatalogInitialized) -- cgit v1.2.1