mirror of
https://github.com/reactos/reactos.git
synced 2026-05-31 08:17:09 +08:00
[NTVDM] GetNextFreeVDDEntry(): Remove 'Entry' redundant initialization (#2859)
Detected by Cppcheck: redundantInitialization.
Addendum to ed874b41 (r61283).
This commit is contained in:
@@ -59,7 +59,7 @@ static LIST_ENTRY VddUserHooksList = {&VddUserHooksList, &VddUserHooksList};
|
||||
|
||||
static USHORT GetNextFreeVDDEntry(VOID)
|
||||
{
|
||||
USHORT Entry = MAX_VDD_MODULES;
|
||||
USHORT Entry;
|
||||
for (Entry = 0; Entry < ARRAYSIZE(VDDList); ++Entry)
|
||||
{
|
||||
if (VDDList[Entry].hDll == NULL) break;
|
||||
|
||||
Reference in New Issue
Block a user