mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avutil/opencl: fix a segmentfault in libavutil/opencl.c
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
6e5cce1cbe
commit
cebe06a0bf
@ -169,7 +169,7 @@ static const OpenclErrorMsg opencl_err_msg[] = {
|
||||
const char *av_opencl_errstr(cl_int status)
|
||||
{
|
||||
int i;
|
||||
for (i = 0; i < sizeof(opencl_err_msg); i++) {
|
||||
for (i = 0; i < FF_ARRAY_ELEMS(opencl_err_msg); i++) {
|
||||
if (opencl_err_msg[i].err_code == status)
|
||||
return opencl_err_msg[i].err_str;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user