From dd36cc3f97b712ba2d2db57ae9398a79b0313e8e Mon Sep 17 00:00:00 2001 From: John Ferlan Date: Tue, 22 Jan 2013 17:09:27 -0500 Subject: [PATCH] rpc: Revert Coverity tag message Turns out the fix for VIR_FREE made this particular Coverity tag unnecessary, so I'm removing it. --- src/rpc/virnetclient.c | 1 - 1 file changed, 1 deletion(-) 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;