oleaut32/tests: Remove variable rValid which is not really used from test_VarMod.

This commit is contained in:
Gerald Pfeifer 2010-05-24 22:09:54 +02:00 committed by Alexandre Julliard
parent 68a94aa901
commit dbd2e8cb34
1 changed files with 1 additions and 3 deletions

View File

@ -2347,7 +2347,7 @@ static void test_VarMod(void)
static const WCHAR szNum1[] = {'1','0','\0'}; static const WCHAR szNum1[] = {'1','0','\0'};
int l, r; int l, r;
BOOL lFound, rFound; BOOL lFound, rFound;
BOOL lValid, rValid; BOOL lValid;
BSTR strNum0, strNum1; BSTR strNum0, strNum1;
CHECKPTR(VarMod); CHECKPTR(VarMod);
@ -2531,7 +2531,6 @@ static void test_VarMod(void)
} }
rFound = TRUE; rFound = TRUE;
rValid = TRUE;
switch(r) switch(r)
{ {
case VT_EMPTY: case VT_EMPTY:
@ -2558,7 +2557,6 @@ static void test_VarMod(void)
case VT_VARIANT: case VT_VARIANT:
case VT_UNKNOWN: case VT_UNKNOWN:
case VT_RECORD: case VT_RECORD:
rValid = FALSE;
break; break;
default: default:
rFound = FALSE; rFound = FALSE;