mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 17:52:56 +00:00
[NTVDM] GetNextFreeVDDEntry(): Remove 'Entry' redundant initialization (#2859)
Detected by Cppcheck: redundantInitialization.
Addendum to ed874b41
(r61283).
This commit is contained in:
parent
03d5ff7f68
commit
d59d74fb69
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ static LIST_ENTRY VddUserHooksList = {&VddUserHooksList, &VddUserHooksList};
|
||||||
|
|
||||||
static USHORT GetNextFreeVDDEntry(VOID)
|
static USHORT GetNextFreeVDDEntry(VOID)
|
||||||
{
|
{
|
||||||
USHORT Entry = MAX_VDD_MODULES;
|
USHORT Entry;
|
||||||
for (Entry = 0; Entry < ARRAYSIZE(VDDList); ++Entry)
|
for (Entry = 0; Entry < ARRAYSIZE(VDDList); ++Entry)
|
||||||
{
|
{
|
||||||
if (VDDList[Entry].hDll == NULL) break;
|
if (VDDList[Entry].hDll == NULL) break;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue