Skip to content

Commit

Permalink
irpmonc: Remove spurious non-ascii character from source file
Browse files Browse the repository at this point in the history
Signed-off-by: Tormod Volden <[email protected]>
  • Loading branch information
tormodvolden committed Oct 19, 2023
1 parent 0461e98 commit d0952c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions irpmonc/driver-hook.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class CDriverHook {
ret = IRPMonDllHookDriver(DriverName_.c_str(), &Settings_, DevExtHook_, &Handle_, &ObjectId_);
if (ret == 0) {
if (AllDevices_) {
void* obješctId = nullptr;
void* objectId = nullptr;
HANDLE hookHandle = nullptr;
ULONG driverCount = 0;
PIRPMON_DRIVER_INFO *driverInfo = nullptr;
Expand All @@ -79,7 +79,7 @@ class CDriverHook {
if (wcsicmp(DriverName_.c_str(), tmpDriver->DriverName) == 0) {
for (size_t j = 0; j < tmpDriver->DeviceCount; ++j) {
tmpDevice = tmpDriver->Devices[j];
ret = IRPMonDllHookDeviceByAddress(tmpDevice->DeviceObject, &hookHandle, &obješctId);
ret = IRPMonDllHookDeviceByAddress(tmpDevice->DeviceObject, &hookHandle, &objectId);
if (ret == 0)
IRPMonDllCloseHookedDeviceHandle(hookHandle);

Expand Down

0 comments on commit d0952c6

Please sign in to comment.