summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2009-10-10 12:12:07 +0100
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2009-10-10 12:12:07 +0100
commitae9b5a75d9560ec5ce88f93e89efccdf64594100 (patch)
tree3a1c0efc5224e03f0bc57667ab7d6550d65f9872 /src
parente29dc8e47e77c99bc8227bea05e2630d071b4084 (diff)
downloadxine-lib-ae9b5a75d9560ec5ce88f93e89efccdf64594100.tar.gz
xine-lib-ae9b5a75d9560ec5ce88f93e89efccdf64594100.tar.bz2
MOD reported zero-length workaround (avoids divide-by-0).
Diffstat (limited to 'src')
-rw-r--r--src/demuxers/demux_mod.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/demuxers/demux_mod.c b/src/demuxers/demux_mod.c
index 34b8ebabe..de3e29ca8 100644
--- a/src/demuxers/demux_mod.c
+++ b/src/demuxers/demux_mod.c
@@ -178,6 +178,8 @@ static int open_mod_file(demux_mod_t *this) {
this->copyright = strdup("");
this->mod_length = ModPlug_GetLength(this->mpfile);
+ if (this->mod_length < 1)
+ this->mod_length = 1; /* avoids -ve & div-by-0 */
return 1;
}