summaryrefslogtreecommitdiff
path: root/libavdevice/jack.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavdevice/jack.c')
-rw-r--r--libavdevice/jack.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavdevice/jack.c b/libavdevice/jack.c
index 5d000a3cd0..aa9348df09 100644
--- a/libavdevice/jack.c
+++ b/libavdevice/jack.c
@@ -202,6 +202,10 @@ static int start_jack(AVFormatContext *context)
self->filled_pkts = av_fifo_alloc(FIFO_PACKETS_NUM * sizeof(AVPacket));
/* New packets FIFO with one extra packet for safety against underruns */
self->new_pkts = av_fifo_alloc((FIFO_PACKETS_NUM + 1) * sizeof(AVPacket));
+ if (!self->new_pkts) {
+ jack_client_close(self->client);
+ return AVERROR(ENOMEM);
+ }
if ((test = supply_new_packets(self, context))) {
jack_client_close(self->client);
return test;