diff options
author | bar@bar.mysql.r18.ru <> | 2003-09-22 11:26:14 +0500 |
---|---|---|
committer | bar@bar.mysql.r18.ru <> | 2003-09-22 11:26:14 +0500 |
commit | 3ff17e7dd5e34d5444a0a771201901df771458d1 (patch) | |
tree | f90adaa4cd673a92391e2e54539a3037aade8c83 /strings/xml.c | |
parent | 99e2a821682e355a43dd7f00f173fb5f0e2746b8 (diff) | |
download | mariadb-git-3ff17e7dd5e34d5444a0a771201901df771458d1.tar.gz |
xml.c:
Bug fix
Diffstat (limited to 'strings/xml.c')
-rw-r--r-- | strings/xml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/xml.c b/strings/xml.c index 793c155ea63..7d7839e1603 100644 --- a/strings/xml.c +++ b/strings/xml.c @@ -255,7 +255,7 @@ int my_xml_parse(MY_XML_PARSER *p,const char *str, uint len) if(MY_XML_EQ==(lex=my_xml_scan(p,&b))) { lex=my_xml_scan(p,&b); - if ( (lex==MY_XML_IDENT) || (lex=MY_XML_STRING) ) + if ( (lex==MY_XML_IDENT) || (lex==MY_XML_STRING) ) { if((MY_XML_OK!=my_xml_enter(p,a.beg,a.end-a.beg)) || (MY_XML_OK!=my_xml_value(p,b.beg,b.end-b.beg)) || |