aboutsummaryrefslogtreecommitdiffstats
path: root/net/9p
diff options
context:
space:
mode:
authorMariusz Kozlowski <m.kozlowski@tuxland.pl>2007-07-31 03:39:13 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-07-31 18:39:42 -0400
commitbbe06f6bf7e764a9eb0e3cdcec2b12c743f35757 (patch)
tree29e2cd320a128f674e67a04d601d4b5e025651f9 /net/9p
parent9700382c3c9ff3e673e587084d76eedb3ba88668 (diff)
fs: 9p/conv.c error path fix
When buf_check_overflow() returns != 0 we will hit kfree(ERR_PTR(err)) and it will not be happy about it. Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl> Cc: Latchesar Ionkov <lucho@ionkov.net> Cc: Eric Van Hensbergen <ericvh@ericvh.myip.org> Cc: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'net/9p')
-rw-r--r--net/9p/conv.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/9p/conv.c b/net/9p/conv.c
index 37451178e761..f2a041cb508a 100644
--- a/net/9p/conv.c
+++ b/net/9p/conv.c
@@ -763,6 +763,7 @@ struct p9_fcall *p9_create_twrite(u32 fid, u64 offset, u32 count,
763 if (err) { 763 if (err) {
764 kfree(fc); 764 kfree(fc);
765 fc = ERR_PTR(err); 765 fc = ERR_PTR(err);
766 goto error;
766 } 767 }
767 768
768 if (buf_check_overflow(bufp)) { 769 if (buf_check_overflow(bufp)) {