[FFmpeg-devel] [PATCH 5/6] tools/target_dec_fuzzer: Do not corrupt the packet size return
Michael Niedermayer
michael at niedermayer.cc
Mon Aug 26 00:31:48 EEST 2019
On Sun, Aug 25, 2019 at 03:47:50PM -0300, James Almer wrote:
> On 8/25/2019 3:41 PM, Michael Niedermayer wrote:
> > Fixes: Timeout (infinite)
> > Fixes: 16732/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_TAK_fuzzer-5642166377906176
> >
> > Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
> > Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> > ---
> > tools/target_dec_fuzzer.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/tools/target_dec_fuzzer.c b/tools/target_dec_fuzzer.c
> > index ce259f35e6..57c75bbfab 100644
> > --- a/tools/target_dec_fuzzer.c
> > +++ b/tools/target_dec_fuzzer.c
> > @@ -222,7 +222,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
> > if (!avpkt.buf)
> > error("Failed memory allocation");
> > } else {
> > - ret = av_packet_make_refcounted(&avpkt);
> > + int ret = av_packet_make_refcounted(&avpkt);
>
> Could also instead make it "if (av_packet_make_refcounted(&avpkt) < 0)
> error()".
>
> LGTM either way.
will apply with the suggested change
thx
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
Any man who breaks a law that conscience tells him is unjust and willingly
accepts the penalty by staying in jail in order to arouse the conscience of
the community on the injustice of the law is at that moment expressing the
very highest respect for law. - Martin Luther King Jr
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 181 bytes
Desc: not available
URL: <http://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20190825/0c86717f/attachment.sig>
More information about the ffmpeg-devel
mailing list