提交 17efdd45 编写于 作者: P Pavel Emelyanov 提交者: Herbert Xu

[BRIDGE]: Lost call to br_fdb_fini() in br_init() error path

In case the br_netfilter_init() (or any subsequent call) 
fails, the br_fdb_fini() must be called to free the allocated
in br_fdb_init() br_fdb_cache kmem cache.
Signed-off-by: NPavel Emelyanov <xemul@openvz.org>
Signed-off-by: NHerbert Xu <herbert@gondor.apana.org.au>
上级 0a112258
......@@ -39,7 +39,7 @@ static int __init br_init(void)
err = br_fdb_init();
if (err)
goto err_out1;
goto err_out;
err = br_netfilter_init();
if (err)
......@@ -65,6 +65,8 @@ static int __init br_init(void)
err_out2:
br_netfilter_fini();
err_out1:
br_fdb_fini();
err_out:
llc_sap_put(br_stp_sap);
return err;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册