[FFmpeg-devel] [PATCH 1/2] avcodec/avpacket: Use av_copy_packet_side_data() in av_packet_copy_props()
Michael Niedermayer
michael at niedermayer.cc
Wed May 3 12:29:04 EEST 2017
On Wed, May 03, 2017 at 05:29:07AM +0200, wm4 wrote:
> On Wed, 3 May 2017 05:21:50 +0200
> Michael Niedermayer <michael at niedermayer.cc> wrote:
>
> > Fixes timeout
> > Fixes: 1293/clusterfuzz-testcase-minimized-6054752074858496
> >
> > Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
> > Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> > ---
> > libavcodec/avpacket.c | 3 +++
> > 1 file changed, 3 insertions(+)
> >
> > diff --git a/libavcodec/avpacket.c b/libavcodec/avpacket.c
> > index 4bf830bb8a..ff7ee730a4 100644
> > --- a/libavcodec/avpacket.c
> > +++ b/libavcodec/avpacket.c
> > @@ -557,6 +557,9 @@ FF_ENABLE_DEPRECATION_WARNINGS
> > dst->flags = src->flags;
> > dst->stream_index = src->stream_index;
> >
> > + if (!dst->side_data_elems);
> > + return av_copy_packet_side_data(dst, src);
> > +
> > for (i = 0; i < src->side_data_elems; i++) {
> > enum AVPacketSideDataType type = src->side_data[i].type;
> > int size = src->side_data[i].size;
>
> This doesn't look right...
already fixed the ; locally
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
Everything should be made as simple as possible, but not simpler.
-- Albert Einstein
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 181 bytes
Desc: Digital signature
URL: <http://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20170503/ae443a53/attachment.sig>
More information about the ffmpeg-devel
mailing list