Skip to content

CAT 025

unurgunite edited this page Jul 11, 2026 · 3 revisions

CAT-025 — File.open resource leak

Field Value
Severity error
Confidence high
Auto-fix

File.open resource leak — File.open without a block leaks file descriptors. Use the block form for automatic closing.

Bad code

f = File.open("data.txt")
content = f.gets_to_end

Clone this wiki locally