diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2000-10-24 17:10:12 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2000-10-24 17:10:12 +0000 |
commit | 126f27992d541f6ff897554828c339822fafee65 (patch) | |
tree | 9c49d268178d61a85f83a5e4bd8e832ed3c1361e /entities.c | |
parent | 3fe876892e75ac2220988daba60d059d84ce3cfb (diff) | |
download | libxml2-126f27992d541f6ff897554828c339822fafee65.tar.gz |
Bunch of fixes, finishing moving datastructures to the hash stuff:
- hash.[ch] debugXML.c: expanded/enhanced the API, added
multikey tuples, made hash structure opaque
- valid.[ch]: moved elements, attributes, notations decalarations
as well as ID and refs to hash tables.
- entities.c: hash cleanup
- xmlmemory.c: fixed a dump problem in debug mode
- include/Makefile.am: problem passing in DESTDIR= values patch
from Marc Christensen <marc@calderasystems.com>
- nanohttp.c: removed debugging remains
- HTMLparser.c: the bogus tag should be ignored (Wayne)
- HTMLparser.c parser.c: fixing a number of problems with the
macros in the *parser.c files (Wayne).
- HTMLparser.c: close the previous option when opening a new one
(Marc Sanfacon).
- result/HTML/*: updated the HTML results accordingly
Daniel
Diffstat (limited to 'entities.c')
-rw-r--r-- | entities.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -153,6 +153,7 @@ xmlAddEntity(xmlDtdPtr dtd, const xmlChar *name, int type, * entity was already defined at another level. */ xmlFreeEntity(ret); + return(NULL); } return(ret); } |