mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +00: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