mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-29 11:41:22 +03:00
started integrating the non-controversial parts of Gary Pennington
* HTMLtree.c catalog.c debugXML.c entities.c nanoftp.c parser.c valid.c xmlmemory.c xpath.c xpointer.c: started integrating the non-controversial parts of Gary Pennington multithread patches * catalog.c: corrected a small bug introduced Daniel
This commit is contained in:
4
parser.c
4
parser.c
@ -86,7 +86,7 @@ int xmlParserDebugEntities = 0;
|
||||
* List of XML prefixed PI allowed by W3C specs
|
||||
*/
|
||||
|
||||
const char *xmlW3CPIs[] = {
|
||||
static const char *xmlW3CPIs[] = {
|
||||
"xml-stylesheet",
|
||||
NULL
|
||||
};
|
||||
@ -1187,7 +1187,7 @@ xmlStrncmp(const xmlChar *str1, const xmlChar *str2, int len) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
static xmlChar casemap[256] = {
|
||||
static const xmlChar casemap[256] = {
|
||||
0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x07,
|
||||
0x08,0x09,0x0A,0x0B,0x0C,0x0D,0x0E,0x0F,
|
||||
0x10,0x11,0x12,0x13,0x14,0x15,0x16,0x17,
|
||||
|
Reference in New Issue
Block a user