- Manager (and possibly other components): XML parsing fix

This commit is contained in:
David Anderson 2013-03-05 22:15:30 -08:00 committed by Oliver Bock
parent fd8e96ab1b
commit 00d9a22779
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ struct XML_PARSER {
return true;
}
if (strlen(parsed_tag) > TAG_BUF_LEN-10) {
return true;
parsed_tag[TAG_BUF_LEN-10] = 0;
}
return false;
}