From 14cc1d6b078f4ba8bf03735963ff0d274601c589 Mon Sep 17 00:00:00 2001 From: Justin Maggard Date: Sun, 26 Jun 2011 20:04:05 +0000 Subject: [PATCH] * Fix a crash bug introduced in the last commit. (Thanks sdhank) --- tivo_commands.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tivo_commands.c b/tivo_commands.c index 3b9d5ca..aebce3d 100644 --- a/tivo_commands.c +++ b/tivo_commands.c @@ -289,6 +289,7 @@ SendItemDetails(struct upnphttp * h, sqlite_int64 item) str.data = resp; ret = strcatf(&str, "\n"); + args.str = &str; args.requested = 1; asprintf(&sql, SELECT_COLUMNS "from OBJECTS o left join DETAILS d on (d.ID = o.DETAIL_ID)"