Skip to content

CAT 027

unurgunite edited this page Jul 11, 2026 · 3 revisions

CAT-027 — Tempfile resource leak

Field Value
Severity error
Confidence high
Auto-fix

Tempfile resource leak — Tempfile must be closed and unlinked after use. Use the block form to ensure cleanup.

Bad code

f = Tempfile.new("tmp")
f.print "data"

Clone this wiki locally