mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
d3d10/tests: Increase size of array expected_i_a in test_scalar_array_methods (cppcheck).
This array is accessed at index 5 on line 5138. Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Matteo Bruni <mbruni@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
86eaf7eeb2
commit
e17ad3d6cb
1 changed files with 1 additions and 1 deletions
|
@ -4974,7 +4974,7 @@ static void test_scalar_array_methods(ID3D10EffectScalarVariable *var, D3D10_SHA
|
|||
const char *name)
|
||||
{
|
||||
float set_f[2], ret_f[2], expected_f;
|
||||
int set_i[6], ret_i[6], expected_i, expected_i_a[2];
|
||||
int set_i[6], ret_i[6], expected_i, expected_i_a[6];
|
||||
BOOL set_b[2], ret_b[2], expected_b, expected_b_a[6];
|
||||
unsigned int i;
|
||||
HRESULT hr;
|
||||
|
|
Loading…
Reference in a new issue