diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-12-23 23:12:37 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-12-25 23:43:53 +0100 |
commit | e4eb43747ba85454957ffb66be1ecfe6e0eef8ff (patch) | |
tree | c24ca8ad55e0be87be3f24cc09c0df12f52d7142 | |
parent | 0207cd14a19605ecd0b47921c109abb0e4b13eb7 (diff) | |
download | VeraCrypt-DCS-e4eb43747ba85454957ffb66be1ecfe6e0eef8ff.tar.gz VeraCrypt-DCS-e4eb43747ba85454957ffb66be1ecfe6e0eef8ff.zip |
Fix wrong handling of global BlockIo devices list
-rw-r--r-- | DcsInt/DcsInt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/DcsInt/DcsInt.c b/DcsInt/DcsInt.c index 8ece8f8..6d008cc 100644 --- a/DcsInt/DcsInt.c +++ b/DcsInt/DcsInt.c @@ -377,7 +377,7 @@ IntBlockIo_Hook( DcsIntBlockIoFirst->Next = NULL;
}
else {
- DcsIntBlockIoFirst->Next = DcsIntBlockIoFirst;
+ DcsIntBlockIo->Next = DcsIntBlockIoFirst;
DcsIntBlockIoFirst = DcsIntBlockIo;
}
|