[libvirt] [PATCH] network: Resolve Coverity FORWARD_NULL

Daniel P. Berrange berrange at redhat.com
Fri Jan 16 12:05:16 UTC 2015


On Fri, Jan 16, 2015 at 06:58:56AM -0500, John Ferlan wrote:
> Commit id 'ca481a6f' added virNetworkRouteDefFree which may be called
> in an error path from lxcAddNetworkRouteDefinition with 'route = NULL'.
> So just add the (!def) at the top to resolve.
> 
> Signed-off-by: John Ferlan <jferlan at redhat.com>
> ---
>  src/conf/networkcommon_conf.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/src/conf/networkcommon_conf.c b/src/conf/networkcommon_conf.c
> index 3f0896d..7b7a851 100644
> --- a/src/conf/networkcommon_conf.c
> +++ b/src/conf/networkcommon_conf.c
> @@ -52,6 +52,8 @@ struct _virNetworkRouteDef {
>  void
>  virNetworkRouteDefFree(virNetworkRouteDefPtr def)
>  {
> +    if (!def)
> +        return;
>      VIR_FREE(def->family);
>      VIR_FREE(def);
>  }

ACK


Regards,
Daniel
-- 
|: http://berrange.com      -o-    http://www.flickr.com/photos/dberrange/ :|
|: http://libvirt.org              -o-             http://virt-manager.org :|
|: http://autobuild.org       -o-         http://search.cpan.org/~danberr/ :|
|: http://entangle-photo.org       -o-       http://live.gnome.org/gtk-vnc :|




More information about the libvir-list mailing list