webservices: Add missing break.

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alistair Leslie-Hughes 2015-12-04 20:55:22 +11:00 committed by Alexandre Julliard
parent 7dc055f897
commit 7aefdc2f18
1 changed files with 1 additions and 0 deletions

View File

@ -321,6 +321,7 @@ void free_node( struct node *node )
{
WS_XML_COMMENT_NODE *comment = (WS_XML_COMMENT_NODE *)node;
heap_free( comment->value.bytes );
break;
}
case WS_XML_NODE_TYPE_END_ELEMENT:
case WS_XML_NODE_TYPE_EOF: