Commit 8a548868 authored by Patrick McHardy's avatar Patrick McHardy Committed by David S. Miller

netfilter: nf_conntrack_h323: fix memory leak in module initialization error path

Properly free h323_buffer when helper registration fails.
Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 68b80f11
......@@ -1799,6 +1799,7 @@ static int __init nf_conntrack_h323_init(void)
err2:
nf_conntrack_helper_unregister(&nf_conntrack_helper_q931[0]);
err1:
kfree(h323_buffer);
return ret;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment