mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 15:42:46 +00:00
[IPV4]: Fix error handling for fib_insert_node call
The error handling around fib_insert_node was broken because we always zeroed the error before checking it. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
4b260a98f1
commit
b47b2ec198
1 changed files with 1 additions and 1 deletions
|
@ -1252,8 +1252,8 @@ fn_trie_insert(struct fib_table *tb, struct rtmsg *r, struct kern_rta *rta,
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!fa_head) {
|
if (!fa_head) {
|
||||||
fa_head = fib_insert_node(t, &err, key, plen);
|
|
||||||
err = 0;
|
err = 0;
|
||||||
|
fa_head = fib_insert_node(t, &err, key, plen);
|
||||||
if (err)
|
if (err)
|
||||||
goto out_free_new_fa;
|
goto out_free_new_fa;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue