Chrome STATUS_ACCESS_VIOLATION — Renderer Process Crash
Errorchrome
Overview
Fix Chrome STATUS_ACCESS_VIOLATION error causing tabs or the entire browser to crash due to memory access violations in the renderer process.
Key Details
- STATUS_ACCESS_VIOLATION (0xC0000005) means a Chrome process accessed invalid memory
- Usually crashes a single tab (shows 'Aw, Snap!' page) or the entire browser
- Common with GPU rendering issues, corrupted extensions, or memory corruption
- Chrome's multi-process architecture usually isolates crashes to single tabs
- Can be caused by buggy GPU drivers, specific websites with problematic JavaScript, or hardware
Common Causes
- Buggy GPU driver causing hardware-accelerated rendering crash
- Corrupted Chrome extension with memory bugs
- Specific website JavaScript or WebAssembly code triggering memory violation
- Chrome installation corrupted
- Insufficient system memory causing Chrome processes to fail
Steps
- 1Disable hardware acceleration: Settings > System > turn off 'Use hardware acceleration'
- 2Disable all extensions and re-enable one by one to find the culprit
- 3Update GPU drivers to the latest version from the manufacturer
- 4Clear Chrome data: Settings > Privacy > Clear browsing data > All time > all categories
- 5If persistent: uninstall Chrome completely, delete C:\Users\[name]\AppData\Local\Google\Chrome, reinstall
Tags
chromestatus-access-violationcrashgpurenderer
More in Chrome
chrome-err-connection-refusedChrome ERR_CONNECTION_REFUSED
Warningchrome-err-connection-timed-outChrome ERR_CONNECTION_TIMED_OUT
Warningchrome-err-internet-disconnectedChrome ERR_INTERNET_DISCONNECTED
Warningchrome-err-name-not-resolvedChrome ERR_NAME_NOT_RESOLVED
Warningchrome-err-ssl-protocol-errorChrome ERR_SSL_PROTOCOL_ERROR
Warningchrome-err-cert-authority-invalidChrome ERR_CERT_AUTHORITY_INVALID
ErrorFrequently Asked Questions
Chrome runs each tab in a separate process. A memory violation in one tab's renderer crashes that tab without affecting others.