Changeset 9c77fbf for lib/xmltree.c
- Timestamp:
- 2012-09-22T12:47:55Z (12 years ago)
- Branches:
- master
- Children:
- 6bef211
- Parents:
- c6fc24a (diff), 11ec078 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/xmltree.c
rc6fc24a r9c77fbf 263 263 } 264 264 265 struct xt_node *xt_from_string( const char *in )265 struct xt_node *xt_from_string( const char *in, int len ) 266 266 { 267 267 struct xt_parser *parser; 268 268 struct xt_node *ret; 269 269 270 if( len == 0 ) 271 len = strlen( in ); 272 270 273 parser = xt_new( NULL, NULL ); 271 xt_feed( parser, in, strlen( in ));274 xt_feed( parser, in, len ); 272 275 ret = parser->root; 273 276 parser->root = NULL;
Note: See TracChangeset
for help on using the changeset viewer.