mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-22 23:33:07 +00:00
lavd/v4l2enc: check write return value.
This commit is contained in:
parent
f099cdaba3
commit
9a7f1519aa
@ -85,7 +85,8 @@ static av_cold int write_header(AVFormatContext *s1)
|
|||||||
static int write_packet(AVFormatContext *s1, AVPacket *pkt)
|
static int write_packet(AVFormatContext *s1, AVPacket *pkt)
|
||||||
{
|
{
|
||||||
const V4L2Context *s = s1->priv_data;
|
const V4L2Context *s = s1->priv_data;
|
||||||
write(s->fd, pkt->data, pkt->size);
|
if (write(s->fd, pkt->data, pkt->size) == -1)
|
||||||
|
return AVERROR(errno);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user