The Cursor window unexpectedly closes (code -1073741819)

Where does the bug appear (feature/product)?

Cursor IDE

Describe the Bug

The Cursor window sometimes terminates unexpectedly. A dialog appears: “The window terminated unexpectedly (reason: ‘crashed’, code: ‘-1073741819’)”. It happens during normal work (editing, switching tabs, or without a clear pattern).

Steps to Reproduce

  1. Open Cursor with my project.
  2. Work for some time (edit files, use chat, etc.).
  3. The window crashes without warning; the dialog with code -1073741819 appears.

Screenshots / Screen Recordings

Operating System

Windows 10/11

Version Information

Version: 2.5.20 (user setup)
VSCode Version: 1.105.1
Commit: 511523af765daeb1fa69500ab0df5b6524424610
Date: 2026-02-19T20:41:31.942Z
Build Type: Stable
Release Track: Default
Electron: 39.4.0
Chromium: 142.0.7444.265
Node.js: 22.22.0
V8: 14.2.231.22-electron.0
OS: Windows_NT x64 10.0.26100

Additional Information

The window crashes during normal use (editing, switching files, or after some time). Dialog shows: “The window terminated unexpectedly (reason: ‘crashed’, code: ‘-1073741819’)”.

Does this stop you from using Cursor

Yes - Cursor is unusable

Hey, this is a known crash with error code -1073741819. A few things to try:

  1. Disable hardware acceleration: add "disable-hardware-acceleration": true to argv.json. Open it via Ctrl+Shift+P → “Preferences: Configure Runtime Arguments”. Save and restart Cursor.

  2. Update your GPU drivers. Outdated or buggy video drivers often cause this exact crash.

  3. Check for an OTEL memory leak: Ctrl+Shift+P → Developer: Toggle Developer Tools → Console. If you see [otel.error] or OTLPExporterError, that is a known memory leak that can lead to crashes.

  4. Rule out extensions: try launching with cursor --disable-extensions and see if it still crashes.

  5. Watch memory usage: Ctrl+Shift+P → Developer: Open Process Explorer. If the renderer gets close to 3,5 GB, that is likely the trigger.

Similar report with the same error code: Cursor keeps crashing with code ‘-1073741819’

Let me know what helped (or didn’t). It’ll help narrow down the cause.