[BOOTVID] Don't increment an uninitialized and unused variable, bug #5103

svn path=/trunk/; revision=47409
This commit is contained in:
Gregor Schneider 2010-05-29 12:57:29 +00:00
parent f435dab493
commit c60e69763c

View file

@ -155,7 +155,7 @@ VgaInterpretCmdStream(IN PUSHORT CmdStream)
if (!ShortValue) continue;
/* Loop the cmd array */
for (; Count; Count--, CmdStream++, Value++)
for (; Count; Count--, CmdStream++)
{
/* Get the byte we're writing */
ShortValue += (*CmdStream) << 8;