Skip to content

Commit

Permalink
fs: 9p/conv.c error path fix
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Mariusz Kozlowski authored and Linus Torvalds committed Jul 31, 2007
1 parent 9700382 commit bbe06f6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions net/9p/conv.c
Original file line number Diff line number Diff line change
Expand Up @@ -763,6 +763,7 @@ struct p9_fcall *p9_create_twrite(u32 fid, u64 offset, u32 count,
if (err) {
kfree(fc);
fc = ERR_PTR(err);
goto error;
}

if (buf_check_overflow(bufp)) {
Expand Down

0 comments on commit bbe06f6

Please sign in to comment.