net: Fix memory leak in net_param_nic()
commit9d94619189d899b2b40e9dfaa0ede64c8b81e5ab
authorThomas Huth <thuth@redhat.com>
Mon, 30 Apr 2018 07:26:45 +0000 (30 09:26 +0200)
committerJason Wang <jasowang@redhat.com>
Mon, 14 May 2018 07:47:12 +0000 (14 15:47 +0800)
tree2d0a9cf7764ad89fb07c3fa4ed49fc409654d6a0
parentc74e62ee3e2dc2955e07d004c71badecb68a84eb
net: Fix memory leak in net_param_nic()

The early exits in case of errors leak the memory allocated for nd_id.
Fix it by using a "goto out" to the cleanup at the end of the function
instead.

Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
net/net.c