* Fix a couple minor DLNA correctness issues.

This commit is contained in:
Justin Maggard
2011-04-28 23:01:28 +00:00
parent 7068d2fda4
commit e0e0fa254d
4 changed files with 23 additions and 24 deletions

View File

@ -1696,7 +1696,7 @@ SendResp_dlnafile(struct upnphttp * h, char * object)
off_t total, offset, size;
sqlite_int64 id;
int sendfh;
static struct { sqlite_int64 id; char path[PATH_MAX]; char mime[32]; char dlna[64]; } last_file = { 0 };
static struct { sqlite_int64 id; char path[PATH_MAX]; char mime[32]; char dlna[96]; } last_file = { 0 };
#if USE_FORK
pid_t newpid = 0;
#endif