comctl32/tests: Remove a dead assignment from dpa.c (Cppcheck).

This commit is contained in:
Bruno Jesus 2014-10-31 00:32:04 -02:00 committed by Alexandre Julliard
parent 2ccd55e56f
commit 2c5f05b860
1 changed files with 1 additions and 1 deletions

View File

@ -271,7 +271,7 @@ static void test_dpa(void)
ok(rc, "dw2=0x%x\n", dw2);
/* Clone into an old DPA */
p = NULL; SetLastError(ERROR_SUCCESS);
SetLastError(ERROR_SUCCESS);
p = pDPA_Clone(dpa, dpa3);
ok(p == dpa3, "p=%p\n", p);
rc=CheckDPA(dpa3, 0x123456, &dw3);