Re: [PATCH 16/42] rpc: Don't check the output of virGetUserConfigDirectory()

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

 



On Thu, Dec 19, 2019 at 8:23 PM Ján Tomko <jtomko@xxxxxxxxxx> wrote:
>
> On Thu, Dec 19, 2019 at 11:04:21AM +0100, Fabiano Fidêncio wrote:
> >virGetUserConfigDirectory() *never* *ever* returns NULL, making the
> >checks for it completely unnecessary.
> >
> >Signed-off-by: Fabiano Fidêncio <fidencio@xxxxxxxxxx>
> >---
> > src/rpc/virnetclient.c | 11 ++++-------
> > 1 file changed, 4 insertions(+), 7 deletions(-)
> >
> >diff --git a/src/rpc/virnetclient.c b/src/rpc/virnetclient.c
> >index 40e5fa35e2..eba8b865d1 100644
> >--- a/src/rpc/virnetclient.c
> >+++ b/src/rpc/virnetclient.c
> >@@ -455,11 +455,9 @@ virNetClientPtr virNetClientNewLibSSH2(const char *host,
> >         knownhosts = g_strdup(knownHostsPath);
> >     } else {
> >         confdir = virGetUserConfigDirectory();
> >-        if (confdir) {
> >-            virBufferAsprintf(&buf, "%s/known_hosts", confdir);
> >-            if (!(knownhosts = virBufferContentAndReset(&buf)))
> >-                goto no_memory;
> >-        }
> >+        virBufferAsprintf(&buf, "%s/known_hosts", confdir);
> >+        if (!(knownhosts = virBufferContentAndReset(&buf)))
> >+            goto no_memory;
>
> no_memory seems suspicious in the times of abort()

Indeed. But that's material for another series.

Best Regards,
-- 
Fabiano Fidêncio


--
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]

  Powered by Linux