Mercurial > audlegacy-plugins
comparison src/xspf/xspf.c @ 1512:7b1b24af319f
now xspf plugin try to load non well formed xspf file. closes #969.
author | Yoshiki Yazawa <yaz@cc.rim.or.jp> |
---|---|
date | Thu, 23 Aug 2007 03:03:41 +0900 |
parents | 6edbd225b100 |
children | a3e002f56bd6 |
comparison
equal
deleted
inserted
replaced
1511:48fcdaa29159 | 1512:7b1b24af319f |
---|---|
278 | 278 |
279 g_return_if_fail(filename != NULL); | 279 g_return_if_fail(filename != NULL); |
280 #ifdef DEBUG | 280 #ifdef DEBUG |
281 printf("playlist_load_xspf: filename = %s\n", filename); | 281 printf("playlist_load_xspf: filename = %s\n", filename); |
282 #endif | 282 #endif |
283 doc = xmlParseFile(filename); | 283 doc = xmlRecoverFile(filename); |
284 if(doc == NULL) | 284 if(doc == NULL) |
285 return; | 285 return; |
286 | 286 |
287 xmlFree(base); | 287 xmlFree(base); |
288 base = NULL; | 288 base = NULL; |