]> git.sesse.net Git - ffmpeg/commit
avformat/flvenc: Forward errors from allocating keyframe index
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Thu, 26 Dec 2019 10:53:34 +0000 (11:53 +0100)
committerMichael Niedermayer <michael@niedermayer.cc>
Thu, 26 Dec 2019 21:48:44 +0000 (22:48 +0100)
commit28d02524a04d401fa7fca9823e3b7261a25613ab
treec0306367ba8efbb5114e4f989ae37bbab1d15acb
parenta94e6b50c663f569ae635d0972aa103eafd56243
avformat/flvenc: Forward errors from allocating keyframe index

While the function adding a new element to the keyframe index checked
the allocation, the caller didn't check the return value. This has been
changed. To do so, the return value has been changed to an ordinary ret
instead of pb->error. This doesn't pose a problem, as write_packet() in
mux.c already checks for write errors (since 9ad1e0c1).

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavformat/flvenc.c