git.videolan.org Git - ffmpeg.git/rss log
FFmpeg git repo
Les articles publiés sur le site
-
avformat/rtpdec_latm : fix leak in parse_fmtp_config()
29 juin, par Lidong Yanavformat/rtpdec_latm: fix leak in parse_fmtp_config() av_mallocz() allocates memory in config, but we forget to free it if init_get_bits() failed. Replace return ret with goto end. Signed-off-by: Lidong Yan <502024330056@smail.nju.edu.cn> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
avformat/demux : Fix segfault due to avcodec_open2 failure
28 juin, par Pavel Koshevoy -
avcodec/rv60dec : Check ofs for overflows
28 juin, par Michael Niedermayeravcodec/rv60dec: Check ofs for overflows Fixes: signed integer overflow: 30 + 2147483647 cannot be represented in type 'int' Fixes: 418335931/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_RV60_fuzzer-6568264620900352 Reviewed-by: Peter Ross <pross@xvid.org> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
avcodec/speexdec : consider differing frame sizes in remaining space check
27 juin, par Michael Niedermayer -
avfilter/vf_lut3d : fix leak if allocate_3dlut failed
27 juin, par Lidong Yanavfilter/vf_lut3d: fix leak if allocate_3dlut failed In parse_cinespace(), memory allocated in in_prelut[] and out_prelut[] would leak if allocate_3dlut() failed. Replace return ret with goto end to free memory before return error code. Signed-off-by: Lidong Yan <502024330056@smail.nju.edu.cn> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>