diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2015-04-14 18:42:51 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-04-14 19:48:57 -0400 |
commit | 992ef6e794c4d6b84e7930ee79310f066c7f6727 (patch) | |
tree | 9ea31e043c3423a06c86c8f9a82496102f6e0f2d /fs | |
parent | 06a269ccdf0550671667f5cfa00bdabb6bf05259 (diff) |
ocfs2: one function call less in ocfs2_merge_rec_left() after error detection
ocfs2_free_path() was called by ocfs2_merge_rec_left() even if a call of
the ocfs2_get_left_path() function failed.
Return from this implementation directly after corresponding
exception handling.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Cc: Mark Fasheh <mfasheh@suse.com>
Cc: Joel Becker <jlbec@evilplan.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ocfs2/alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/alloc.c b/fs/ocfs2/alloc.c index 370b4ea4c23a..4bdc19fb7b85 100644 --- a/fs/ocfs2/alloc.c +++ b/fs/ocfs2/alloc.c | |||
@@ -3535,7 +3535,7 @@ static int ocfs2_merge_rec_left(struct ocfs2_path *right_path, | |||
3535 | ret = ocfs2_get_left_path(et, right_path, &left_path); | 3535 | ret = ocfs2_get_left_path(et, right_path, &left_path); |
3536 | if (ret) { | 3536 | if (ret) { |
3537 | mlog_errno(ret); | 3537 | mlog_errno(ret); |
3538 | goto out; | 3538 | return ret; |
3539 | } | 3539 | } |
3540 | 3540 | ||
3541 | left_el = path_leaf_el(left_path); | 3541 | left_el = path_leaf_el(left_path); |