From 20fa9fdc2fb4708e89bd9928c3ba4173e36d98b1 Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 25 Feb 2023 04:00:45 +0200 Subject: [PATCH] VMware Mouse driver is causing a stack corruption --- Input/VMwareMouse/VMwareMouseDriver.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Input/VMwareMouse/VMwareMouseDriver.cpp b/Input/VMwareMouse/VMwareMouseDriver.cpp index 63a9bfed..9b6e9963 100644 --- a/Input/VMwareMouse/VMwareMouseDriver.cpp +++ b/Input/VMwareMouse/VMwareMouseDriver.cpp @@ -89,6 +89,9 @@ bool IsVMwareBackdoorAvailable(void) int DriverEntry(void *Data) { + /* There's a bug somewhere in driver or kernel and it's just crashing. */ + return NOT_IMPLEMENTED; + if (!Data) return INVALID_KERNEL_API; KAPI = (KernelAPI *)Data;