* Deal with unhandled filter arguments more gracefully.

This commit is contained in:
Justin Maggard 2009-04-30 06:32:28 +00:00
parent 6d94a96543
commit 7315d001a5

View File

@ -502,7 +502,12 @@ SendContainer(struct upnphttp * h, const char * objectID, int itemStart, int ite
else
{
DPRINTF(E_INFO, L_TIVO, "Unhandled Filter [%s]\n", item);
strcat(myfilter, "0 = 1");
if( i )
{
ret = strlen(myfilter);
myfilter[ret-4] = '\0';
}
i--;
}
item = strtok_r(NULL, ",", &saveptr);
}