mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-06-16 04:32:47 +02:00
avutil/file: add more check befor destory the buffer
add more check befor destory the buffer Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
This commit is contained in:
+1
-1
@@ -143,7 +143,7 @@ out:
|
||||
|
||||
void av_file_unmap(uint8_t *bufptr, size_t size)
|
||||
{
|
||||
if (!size)
|
||||
if (!size || !bufptr)
|
||||
return;
|
||||
#if HAVE_MMAP
|
||||
munmap(bufptr, size);
|
||||
|
||||
Reference in New Issue
Block a user