mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-30 22:43:14 +03:00
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
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
Sun May 16 03:18:52 CEST 2004 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* catalog.c: a couple of large static variable which should really
|
||||
not be declared as such cluttered the .bss section.
|
||||
|
||||
Sun May 16 03:06:31 CEST 2004 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* doc/ChangeLog.awk: fixed a couple of problems when parsing
|
||||
|
@ -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)
|
||||
|
@ -198,6 +198,7 @@ iOFTPMatch()
|
||||
iOHTTPMatch()
|
||||
normalizeWindowsPath()
|
||||
parserGetDirectory()
|
||||
popInputCallbacks()
|
||||
registerDefaultInputCallbacks()
|
||||
registerDefaultOutputCallbacks()
|
||||
registerHTTPPostCallbacks()
|
||||
|
@ -1175,6 +1175,7 @@ xmlOutputBufferCreateFilename
|
||||
xmlOutputBufferCreateIO
|
||||
xmlOutputBufferFlush
|
||||
xmlOutputBufferWrite
|
||||
xmlOutputBufferWriteEscape
|
||||
xmlOutputBufferWriteString
|
||||
xmlParseAttValue
|
||||
xmlParseAttribute
|
||||
@ -1268,6 +1269,7 @@ xmlPatternMatch
|
||||
xmlPatterncompile
|
||||
xmlPedanticParserDefault
|
||||
xmlPopInput
|
||||
xmlPopInputCallbacks
|
||||
xmlPrintURI
|
||||
xmlPushInput
|
||||
xmlRMutexLock
|
||||
@ -1404,7 +1406,6 @@ xmlResetLastError
|
||||
xmlSAX2AttributeDecl
|
||||
xmlSAX2CDataBlock
|
||||
xmlSAX2Characters
|
||||
xmlSAX2CheckNamespace
|
||||
xmlSAX2Comment
|
||||
xmlSAX2ElementDecl
|
||||
xmlSAX2EndDocument
|
||||
@ -1415,11 +1416,9 @@ xmlSAX2ExternalSubset
|
||||
xmlSAX2GetColumnNumber
|
||||
xmlSAX2GetEntity
|
||||
xmlSAX2GetLineNumber
|
||||
xmlSAX2GetNamespace
|
||||
xmlSAX2GetParameterEntity
|
||||
xmlSAX2GetPublicId
|
||||
xmlSAX2GetSystemId
|
||||
xmlSAX2GlobalNamespace
|
||||
xmlSAX2HasExternalSubset
|
||||
xmlSAX2HasInternalSubset
|
||||
xmlSAX2IgnorableWhitespace
|
||||
@ -1428,13 +1427,11 @@ xmlSAX2InitDocbDefaultSAXHandler
|
||||
xmlSAX2InitHtmlDefaultSAXHandler
|
||||
xmlSAX2InternalSubset
|
||||
xmlSAX2IsStandalone
|
||||
xmlSAX2NamespaceDecl
|
||||
xmlSAX2NotationDecl
|
||||
xmlSAX2ProcessingInstruction
|
||||
xmlSAX2Reference
|
||||
xmlSAX2ResolveEntity
|
||||
xmlSAX2SetDocumentLocator
|
||||
xmlSAX2SetNamespace
|
||||
xmlSAX2StartDocument
|
||||
xmlSAX2StartElement
|
||||
xmlSAX2StartElementNs
|
||||
@ -1459,6 +1456,8 @@ xmlSaveFlush
|
||||
xmlSaveFormatFile
|
||||
xmlSaveFormatFileEnc
|
||||
xmlSaveFormatFileTo
|
||||
xmlSaveSetAttrEscape
|
||||
xmlSaveSetEscape
|
||||
xmlSaveToBuffer
|
||||
xmlSaveToFd
|
||||
xmlSaveToFilename
|
||||
|
Reference in New Issue
Block a user