Skip to content

PR #427

PR #427 #1402

Triggered via dynamic May 23, 2026 19:59
Status Success
Total duration 1m 16s
Artifacts

codeql

on: dynamic
Matrix: analyze
Fit to window
Zoom out
Zoom in

Annotations

1 warning
Unhandled error event on `child.stdin` can crash the benchmark process: src/benchmarks/claude-ui/harness.ts#L214
Add `child.stdin.on('error', () => {})` (or pipe the rejection through) before calling `child.stdin.end()`. Without an error listener, an EPIPE emitted when the spawned process exits before stdin is drained will cause an uncaught Node.js `EventEmitter` exception that terminates the entire benchmark runner.