mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
After merge fixes
This commit is contained in:
@@ -135,7 +135,7 @@ static int my_xml_value(MY_XML_PARSER *st, const char *str, uint len)
|
||||
|
||||
static int my_xml_enter(MY_XML_PARSER *st, const char *str, uint len)
|
||||
{
|
||||
if ( (st->attrend-st->attr+len+1)>sizeof(st->attr))
|
||||
if ((uint) (st->attrend-st->attr+len+1) > sizeof(st->attr))
|
||||
{
|
||||
sprintf(st->errstr,"To deep XML");
|
||||
return MY_XML_ERROR;
|
||||
|
||||
Reference in New Issue
Block a user