diff options
Diffstat (limited to 'src/input/input_dvd.c')
-rw-r--r-- | src/input/input_dvd.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c index 58e7dbb8b..0e5078099 100644 --- a/src/input/input_dvd.c +++ b/src/input/input_dvd.c @@ -851,6 +851,9 @@ static off_t dvd_plugin_read (input_plugin_t *this_gen, void *buf_gen, off_t len /* dvd_input_plugin_t *this = (dvd_input_plugin_t*)this_gen; */ char *ch_buf = (char *)buf_gen; + if (len < 4) + return -1; + /* FIXME: Tricking the demux_mpeg_block plugin */ ch_buf[0] = 0; ch_buf[1] = 0; |