Re: [PATCH] crypto: ccm - remove goto

2015-10-14 Thread Herbert Xu
On Tue, Oct 13, 2015 at 01:48:25PM +0530, Sudip Mukherjee wrote: > Instead of using goto and jumping to a label and then returning from > there, lets return directly. The label out: is not used from anywhere > else in the code. > > Signed-off-by: Sudip Mukherjee I don't think patch improves the

[PATCH] crypto: ccm - remove goto

2015-10-13 Thread Sudip Mukherjee
Instead of using goto and jumping to a label and then returning from there, lets return directly. The label out: is not used from anywhere else in the code. Signed-off-by: Sudip Mukherjee --- crypto/ccm.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crypto/ccm.c b/crypto