[PATCH][IPV4] Remove bugus goto-s from ip_route_input_slow

2007-11-10 Thread Pavel Emelyanov
Both places look like if (err == XXX) goto yyy; done: while both yyy targets look like err = XXX; goto done; so this is ok to remove the above if-s. yyy labels are used in other places and are not removed. Signed-off-by: Pavel Emelyanov [EMAIL

Re: [PATCH][IPV4] Remove bugus goto-s from ip_route_input_slow

2007-11-10 Thread David Miller
From: Pavel Emelyanov [EMAIL PROTECTED] Date: Sat, 10 Nov 2007 17:27:50 +0300 Both places look like if (err == XXX) goto yyy; done: while both yyy targets look like err = XXX; goto done; so this is ok to remove the above if-s. yyy