From 54160445284875eee9ed85d513791b193a076d0b Mon Sep 17 00:00:00 2001 From: Nick White Date: Wed, 2 Apr 2008 22:20:24 +0000 Subject: Fix for media xml crash bugs Formatting Check for empty item titles Created function to check if any part of a string contains a phrase Added some basic error checking to getquote Note this does not completely fix all problems git-archimport-id: getht@sv.gnu.org/getht--mainline--0.1--patch-31 --- src/mediaxml.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/mediaxml.c') diff --git a/src/mediaxml.c b/src/mediaxml.c index 02c2cad..54ed3ae 100644 --- a/src/mediaxml.c +++ b/src/mediaxml.c @@ -228,7 +228,10 @@ iss ** parsemedia(char * filepath, iss ** issue, int * no_of_issues) if(xmlGetProp(itnode, "preview")) strncpy(cur_media->preview_uri, (char *) xmlGetProp(itnode, "preview_uri"), STR_MAX); - strncpy(cur_media->title, (char *) xmlNodeListGetString(media_file, itnode->xmlChildrenNode, 1), STR_MAX); + if((char *) xmlNodeListGetString(media_file, itnode->xmlChildrenNode, 1)) + strncpy(cur_media->title, (char *) xmlNodeListGetString(media_file, itnode->xmlChildrenNode, 1), STR_MAX); + else + strncpy(cur_media->title, "untitled", STR_MAX); } itnode = itnode->next; -- cgit v1.2.3