msxml3: Add missing break for text node case (Valgrind).

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2015-12-30 14:52:15 +03:00 committed by Alexandre Julliard
parent 02e0e122a5
commit e0737207e7
1 changed files with 1 additions and 1 deletions

View File

@ -778,8 +778,8 @@ static xmlChar* do_get_text(xmlNodePtr node, BOOL trim, DWORD *first, DWORD *las
xmlFree(tmp);
tmp = NULL;
}
break;
}
break;
case XML_CDATA_SECTION_NODE:
case XML_ENTITY_REF_NODE:
case XML_ENTITY_NODE: