mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[CLASSPNP]
Fix a bug, I introduced. svn path=/branches/cmake-bringup/; revision=50651
This commit is contained in:
parent
1d2ca9b115
commit
054a3b2291
2 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue