Author: hbelusca
Date: Tue Dec 24 13:03:04 2013
New Revision: 61369
URL: http://svn.reactos.org/svn/reactos?rev=61369&view=rev
Log:
[NTVDM]: Fix VDDInstallIOHook.
Modified:
branches/ntvdm/subsystems/ntvdm/io.c
Modified: branches/ntvdm/subsystems/ntvdm/io.c
URL: http://svn.reactos.org/svn/reactos/branches/ntvdm/subsystems/ntvdm/io.c?rev…
==============================================================================
--- branches/ntvdm/subsystems/ntvdm/io.c [iso-8859-1] (original)
+++ branches/ntvdm/subsystems/ntvdm/io.c [iso-8859-1] Tue Dec 24 13:03:04 2013
@@ -557,11 +557,12 @@
IoPortProc[i].IoHandlers.OutsD = NULL;
/* Save our handlers */
- IoPortProc[i].VddIoHandlers = *IOhandler; // IOhandler[i]; ?????????
+ IoPortProc[i].VddIoHandlers = *IOhandler;
}
- /* Go to next range */
+ /* Go to the next range */
++pPortRange;
+ ++IOhandler;
}
return TRUE;
@@ -601,7 +602,7 @@
ZeroMemory(&IoPortProc[i], sizeof(IoPortProc[i]));
}
- /* Go to next range */
+ /* Go to the next range */
++pPortRange;
}
}