Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/azatoth/minidlna.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Maggard <jmaggard@users.sourceforce.net>2011-04-29 03:01:28 +0400
committerJustin Maggard <jmaggard@users.sourceforce.net>2011-04-29 03:01:28 +0400
commit458a34cd1e8d4513bc6db0d8d944de6f09408b54 (patch)
treec7c5451fcb8007dad0f57f80d10eca30ab07d742 /upnphttp.c
parentb7ef97b59397f50fc24168e651d5e7a459e94734 (diff)
* Fix a couple minor DLNA correctness issues.
Diffstat (limited to 'upnphttp.c')
-rw-r--r--upnphttp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/upnphttp.c b/upnphttp.c
index 21a42d8..d33b2fe 100644
--- a/upnphttp.c
+++ b/upnphttp.c
@@ -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