mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
[CLASSPNP]
Fix a bug, I introduced. svn path=/branches/cmake-bringup/; revision=50651
This commit is contained in:
@@ -2485,7 +2485,7 @@ ClassIoComplete(
|
||||
retry = TRUE;
|
||||
}
|
||||
|
||||
if (retry && ((*(char*)&irpStack->Parameters.Others.Argument4)--)) {
|
||||
if (retry && ((*(PCHAR*)&irpStack->Parameters.Others.Argument4)--)) {
|
||||
|
||||
//
|
||||
// Retry request.
|
||||
|
||||
@@ -161,7 +161,7 @@ ClassIoCompleteAssociated(
|
||||
retry = TRUE;
|
||||
}
|
||||
|
||||
if (retry && ((*(char*)&irpStack->Parameters.Others.Argument4)--)) {
|
||||
if (retry && ((*(PCHAR*)&irpStack->Parameters.Others.Argument4)--)) {
|
||||
|
||||
//
|
||||
// Retry request. If the class driver has supplied a StartIo,
|
||||
|
||||
Reference in New Issue
Block a user