mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
lavfi/zmq: Avoid mem copy past the end of input buffer
This commit is contained in:
parent
46b97c0527
commit
f60b1211b2
@ -139,7 +139,7 @@ static int recv_msg(AVFilterContext *ctx, char **buf, int *buf_size)
|
||||
ret = AVERROR(ENOMEM);
|
||||
goto end;
|
||||
}
|
||||
memcpy(*buf, zmq_msg_data(&msg), *buf_size);
|
||||
memcpy(*buf, zmq_msg_data(&msg), *buf_size - 1);
|
||||
(*buf)[*buf_size-1] = 0;
|
||||
|
||||
end:
|
||||
|
Loading…
Reference in New Issue
Block a user