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 *name2 = "TestName2";
|
||||
int datasize;
|
||||
char *referenceUserdata;
|
||||
char *userdata;
|
||||
char *referenceUserdata2;
|
||||
char *userdata2;
|
||||
char *referenceUserdata = NULL;
|
||||
char *userdata = NULL;
|
||||
char *referenceUserdata2 = NULL;
|
||||
char *userdata2 = NULL;
|
||||
char *result;
|
||||
int iteration;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue