* Memleak in iso9660 fs (rockridge extension) on read error
@ 2003-03-09 18:27 Oleg Drokin
0 siblings, 0 replies; only message in thread
From: Oleg Drokin @ 2003-03-09 18:27 UTC (permalink / raw)
To: torvalds, alan; +Cc: linux-kernel
Hello!
I am looking at fs/isofs/rock.c::MAYBE_CONTINUE() macros
in latest 2.4 bk tree. (latest 2.5 have the same problem)
Seems that it opens a memleak in case of read error of rock-ridge attribute.
The caller of the macros assumes that when MAYBE_CONTINUE macros is over
(and not jumping to "out" label), then buffer is freed. (The funny thing is
that the macro only jumps to "out" if buffer allocation failed now, so
nothing to free, and every caller tries to free buffer if possible).
Perhaps something like following patch should help (applies to 2.4 and 2.5).
Found with help of smatch and enchanced unfree script.
Bye,
Oleg
===== fs/isofs/rock.c 1.6 vs edited =====
--- 1.6/fs/isofs/rock.c Tue Feb 5 17:10:25 2002
+++ edited/fs/isofs/rock.c Sun Mar 9 21:23:07 2003
@@ -81,6 +81,7 @@
goto LABEL; \
} \
printk("Unable to read rock-ridge attributes\n"); \
+ goto out;
}}
/* This is the inner layer of the get filename routine, and is called
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-03-09 18:17 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-03-09 18:27 Memleak in iso9660 fs (rockridge extension) on read error Oleg Drokin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox