Re: [PATCH 5/9] rpc: Add coverity[dead_error_begin] tag

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 01/22/2013 07:41 AM, John Ferlan wrote:
> Coverity misses the nuance of VIR_FREE(privkey) setting privkey = NULL when
> if (!(virFileExists(privkey))) is true and thus declares the code dead.
> ---
>  src/rpc/virnetclient.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/src/rpc/virnetclient.c b/src/rpc/virnetclient.c
> index 44638e2..7550968 100644
> --- a/src/rpc/virnetclient.c
> +++ b/src/rpc/virnetclient.c
> @@ -430,6 +430,7 @@ virNetClientPtr virNetClientNewLibSSH2(const char *host,
>                  VIR_FREE(privkey);
>              /* DSA */
>              if (!privkey) {
> +                /* coverity[dead_error_begin] */

I think a LOT of these cleanups would have been easier to evaluate if we
had seen the actual Coverity trace that was being silenced.

For this particular code, avoiding the Coverity comment may be as simple
as reindenting things, turning the old:

if (!(virFileExists(privkey)))
    VIR_FREE(privkey);
if (!privkey) {
    privkey = ...
    ...
}

into:

if (!virFileExists(privkey)) {
    VIR_FREE(privkey);
    privkey = ...
    ...
}

-- 
Eric Blake   eblake redhat com    +1-919-301-3266
Libvirt virtualization library http://libvirt.org

Attachment: signature.asc
Description: OpenPGP digital signature

--
libvir-list mailing list
libvir-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/libvir-list

[Index of Archives]     [Virt Tools]     [Libvirt Users]     [Lib OS Info]     [Fedora Users]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [KDE Users]     [Fedora Tools]