From: John Ferlan Date: Tue, 22 Jan 2013 22:09:27 +0000 (-0500) Subject: rpc: Revert Coverity tag message X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=dd36cc3f97b712ba2d2db57ae9398a79b0313e8e;p=libvirt.git rpc: Revert Coverity tag message Turns out the fix for VIR_FREE made this particular Coverity tag unnecessary, so I'm removing it. --- diff --git a/src/rpc/virnetclient.c b/src/rpc/virnetclient.c index 75509682be..44638e2bda 100644 --- a/src/rpc/virnetclient.c +++ b/src/rpc/virnetclient.c @@ -430,7 +430,6 @@ virNetClientPtr virNetClientNewLibSSH2(const char *host, VIR_FREE(privkey); /* DSA */ if (!privkey) { - /* coverity[dead_error_begin] */ virBufferAsprintf(&buf, "%s/.ssh/id_dsa", homedir); if (!(privkey = virBufferContentAndReset(&buf))) goto no_memory;