mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-11 05:17:37 +03:00
Fixed = vs. == bug in parser.c (hrmless though) and type in sgml, Daniel.
This commit is contained in:
parent
5cb5ab8d94
commit
0caf07a701
@ -1,3 +1,8 @@
|
||||
Tue Dec 21 17:22:17 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
|
||||
|
||||
* parser.c: fixed a stupid = vs. == bug :-(
|
||||
* doc/gnome-xml.sgml: s/glade/xml/
|
||||
|
||||
Tue Dec 21 14:29:34 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
|
||||
|
||||
* configure.in, doc/xml.html : bug fix release 1.8.2
|
||||
|
@ -52,7 +52,7 @@
|
||||
</legalnotice>
|
||||
|
||||
<abstract>
|
||||
<para>This manual documents the interfaces of the libglade
|
||||
<para>This manual documents the interfaces of the libxml
|
||||
library and has some short notes to help get you up to speed
|
||||
with using the library.</para>
|
||||
</abstract>
|
||||
|
2
parser.c
2
parser.c
@ -855,7 +855,7 @@ xmlParseStringCharRef(xmlParserCtxtPtr ctxt, const xmlChar **str) {
|
||||
if ((str == NULL) || (*str == NULL)) return(0);
|
||||
ptr = *str;
|
||||
cur = *ptr;
|
||||
if ((cur = '&') && (ptr[1] == '#') && (ptr[2] == 'x')) {
|
||||
if ((cur == '&') && (ptr[1] == '#') && (ptr[2] == 'x')) {
|
||||
ptr += 3;
|
||||
cur = *ptr;
|
||||
while (cur != ';') {
|
||||
|
Loading…
Reference in New Issue
Block a user