aboutsummaryrefslogtreecommitdiffstats
path: root/lib/xmltree.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/xmltree.c')
-rw-r--r--lib/xmltree.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/xmltree.c b/lib/xmltree.c
index 74292be9..91d256d2 100644
--- a/lib/xmltree.c
+++ b/lib/xmltree.c
@@ -262,13 +262,16 @@ void xt_cleanup( struct xt_parser *xt, struct xt_node *node, int depth )
}
}
-struct xt_node *xt_from_string( const char *in )
+struct xt_node *xt_from_string( const char *in, int len )
{
struct xt_parser *parser;
struct xt_node *ret;
+ if( len == 0 )
+ len = strlen( in );
+
parser = xt_new( NULL, NULL );
- xt_feed( parser, in, strlen( in ) );
+ xt_feed( parser, in, len );
ret = parser->root;
parser->root = NULL;
xt_free( parser );