1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-08-01 10:06:59 +03:00

- xpath.c: fixed xmlXPathNodeCollectAndTest() to do proper

prefix lookup.
- parserInternals.c: fixed the bug reported by Morus Walter
  due to an off by one typo in xmlStringCurrentChar()
Daniel
This commit is contained in:
Daniel Veillard
2001-04-16 14:08:07 +00:00
parent a3bfca59bf
commit e043ee17c2
7 changed files with 102 additions and 44 deletions

2
tree.c
View File

@ -106,7 +106,7 @@ xmlSetBufferAllocationScheme(xmlBufferAllocationScheme scheme) {
*/
xmlBufferAllocationScheme
xmlGetBufferAllocationScheme(void) {
return xmlBufferAllocScheme;
return(xmlBufferAllocScheme);
}
/**