Commit 8fe8e2f9 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

secur32: Avoid a FALSE:TRUE conditional expression.

parent 6132ed66
......@@ -430,7 +430,7 @@ SecureProvider *SECUR32_addProvider(const SecurityFunctionTableA *fnTableA,
ret->moduleName = moduleName ? SECUR32_strdupW(moduleName) : NULL;
_makeFnTableA(&ret->fnTableA, fnTableA, fnTableW);
_makeFnTableW(&ret->fnTableW, fnTableA, fnTableW);
ret->loaded = moduleName ? FALSE : TRUE;
ret->loaded = !moduleName;
}
else
{
......
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