summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
Diffstat (limited to 'stream')
-rw-r--r--stream/stream_cdda.c3
-rw-r--r--stream/stream_vcd.c2
2 files changed, 5 insertions, 0 deletions
diff --git a/stream/stream_cdda.c b/stream/stream_cdda.c
index a99150f65d..1bec7dcc37 100644
--- a/stream/stream_cdda.c
+++ b/stream/stream_cdda.c
@@ -196,6 +196,9 @@ static int fill_buffer(stream_t *s, char *buffer, int max_len)
int16_t *buf;
int i;
+ if (max_len < CDIO_CD_FRAMESIZE_RAW)
+ return -1;
+
if ((p->sector < p->start_sector) || (p->sector > p->end_sector)) {
s->eof = 1;
return 0;
diff --git a/stream/stream_vcd.c b/stream/stream_vcd.c
index 1ef9a337de..d8ef552aa5 100644
--- a/stream/stream_vcd.c
+++ b/stream/stream_vcd.c
@@ -79,6 +79,8 @@ static const struct m_struct_st stream_opts = {
static int fill_buffer(stream_t *s, char* buffer, int max_len){
if(s->pos > s->end_pos) /// don't past end of current track
return 0;
+ if (max_len < VCD_SECTOR_DATA)
+ return -1;
return vcd_read(s->priv,buffer);
}