From: Namhyung Kim Date: Mon, 4 Oct 2010 15:13:59 +0000 (+0900) Subject: jbd: Remove unnecessary goto statement X-Git-Tag: v2.6.37-rc1~78^2~18 X-Git-Url: https://bbs.cooldavid.org/git/?p=net-next-2.6.git;a=commitdiff_plain;h=2b23976908d9f8406f8b10b86c83b2cee302bc7d jbd: Remove unnecessary goto statement Remove goto statement which jumps to very next line. Also remove target label because it is no longer used anywhere. Signed-off-by: Namhyung Kim Signed-off-by: Jan Kara --- diff --git a/fs/jbd/transaction.c b/fs/jbd/transaction.c index 5ae71e75a49..981449ca8f1 100644 --- a/fs/jbd/transaction.c +++ b/fs/jbd/transaction.c @@ -293,9 +293,7 @@ handle_t *journal_start(journal_t *journal, int nblocks) jbd_free_handle(handle); current->journal_info = NULL; handle = ERR_PTR(err); - goto out; } -out: return handle; }