Fixed freeing uninitialized pointers on failure cleanup in tests.
This commit is contained in:
parent
0695fbe89f
commit
174b5f8110
1 changed files with 4 additions and 4 deletions
|
@ -1522,10 +1522,10 @@ video_getSetWindowData(void *arg)
|
||||||
const char *referenceName2 = "TestName2";
|
const char *referenceName2 = "TestName2";
|
||||||
const char *name2 = "TestName2";
|
const char *name2 = "TestName2";
|
||||||
int datasize;
|
int datasize;
|
||||||
char *referenceUserdata;
|
char *referenceUserdata = NULL;
|
||||||
char *userdata;
|
char *userdata = NULL;
|
||||||
char *referenceUserdata2;
|
char *referenceUserdata2 = NULL;
|
||||||
char *userdata2;
|
char *userdata2 = NULL;
|
||||||
char *result;
|
char *result;
|
||||||
int iteration;
|
int iteration;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue