Skip to content
Snippets Groups Projects
Commit 8fe8e2f9 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard
Browse files

secur32: Avoid a FALSE:TRUE conditional expression.

parent 6132ed66
Branches
Tags
No related merge requests found
......@@ -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
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment