I've been having a really frustrating issue with my computer. It's been crashing more and more often, and each time it restarts, I get a bug check error: 0x0000013a (0x0000000000000017, 0xffffd107b2000340, 0xffffd107be40b740, 0x0000000000000000). I've updated my drivers and checked to make sure everything is current, but the problem persists. Any advice on how to fix this?
2 Answers
The bug check you're experiencing, 0x0000013a, usually indicates that a bad driver is messing with memory. Here are a few steps you can take to troubleshoot:
1. **Check your minidump files** - Look in `C:WindowsMinidump` and use **BlueScreenView** or **WinDbg** to find out which driver was active during the crash.
2. **Test your RAM** - Use **Windows Memory Diagnostic** or, for a more thorough test, try **MemTest86**. Faulty RAM can definitely cause these kinds of problems.
3. **Update drivers** - Instead of relying on Windows Update, get the latest chipset drivers from your motherboard or laptop manufacturer, and the newest GPU driver from NVIDIA or AMD.
4. **Look for driver conflicts** - Software like RGB controllers, VPNs, or out-of-date antivirus can cause these issues.
5. **Run system file checks** - Open Command Prompt as admin and run:
`sfc /scannow`
`DISM /Online /Cleanup-Image /RestoreHealth`
Let me know if you need any help with the minidump files; they can reveal a lot about what's going wrong!
That 0x0000013a error is related to `KERNEL_MODE_HEAP_CORRUPTION`. The `0x17` subtype suggests there's been corruption detected, often due to a bad driver holding onto memory improperly.
First, it might help to reset your PC to stock settings—no overclocks or special tuning. Unplug any unnecessary USB devices, and definitely update your chipset and GPU drivers straight from the manufacturer's site.
Checking the minidump files in `C:WindowsMinidump` is key; they usually point to which module of the system failed. You can read more about it in Microsoft's guide here: [Bug Check 0x13A](https://learn.microsoft.com/en-us/windows-hardware/drivers/debugger/bug-check-0x13a--kernel-mode-heap-corruption). Let me know how it goes!

Related Questions
Lenovo Thinkpad Stuck In Update Loop Install FilterDriverU2_Reload