mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-08-08 17:42:14 +03:00
Fixed = vs. == bug in parser.c (hrmless though) and type in sgml, Daniel.
This commit is contained in:
@@ -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>
|
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
|
* configure.in, doc/xml.html : bug fix release 1.8.2
|
||||||
|
@@ -52,7 +52,7 @@
|
|||||||
</legalnotice>
|
</legalnotice>
|
||||||
|
|
||||||
<abstract>
|
<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
|
library and has some short notes to help get you up to speed
|
||||||
with using the library.</para>
|
with using the library.</para>
|
||||||
</abstract>
|
</abstract>
|
||||||
|
2
parser.c
2
parser.c
@@ -855,7 +855,7 @@ xmlParseStringCharRef(xmlParserCtxtPtr ctxt, const xmlChar **str) {
|
|||||||
if ((str == NULL) || (*str == NULL)) return(0);
|
if ((str == NULL) || (*str == NULL)) return(0);
|
||||||
ptr = *str;
|
ptr = *str;
|
||||||
cur = *ptr;
|
cur = *ptr;
|
||||||
if ((cur = '&') && (ptr[1] == '#') && (ptr[2] == 'x')) {
|
if ((cur == '&') && (ptr[1] == '#') && (ptr[2] == 'x')) {
|
||||||
ptr += 3;
|
ptr += 3;
|
||||||
cur = *ptr;
|
cur = *ptr;
|
||||||
while (cur != ';') {
|
while (cur != ';') {
|
||||||
|
Reference in New Issue
Block a user