Commit 0869852c authored by Kirill Smirnov's avatar Kirill Smirnov Committed by Alexandre Julliard

msi: Do not return success on failure (spotted by clang).

parent e60b2766
......@@ -593,7 +593,7 @@ static UINT WHERE_evaluate( MSIWHEREVIEW *wv, const UINT rows[],
default:
ERR("Invalid expression type\n");
break;
return ERROR_FUNCTION_FAILED;
}
return ERROR_SUCCESS;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment