This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
cmdutils_opencl: Fix read of uninitialized pointer
Fixes: CID1396856 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.4
Michael Niedermayer
8 years ago
parent
ad2296ab3a
commit
d712a5cddb
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
cmdutils_opencl.c
+ 1
- 1
cmdutils_opencl.c
View File
@@ -129,7 +129,7 @@ static int64_t run_opencl_bench(AVOpenCLExternalEnv *ext_opencl_env)
cl_int status;
size_t kernel_len;
char *inbuf;
int *mask;
int *mask
= NULL
;
int buf_size = width * height * sizeof(char);
int mask_size = sizeof(uint32_t) * 128;
Write
Preview
Loading…
Cancel
Save