Re: [libvirt PATCH 1/6] virt-login-shell: correctly calculate string length

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

 



On Mon, Aug 03, 2020 at 12:25:29AM +0200, Ján Tomko wrote:
virLoginShellGetShellArgv was not dereferencing the pointer
to the string list containing the shell parameters from the
config file, thus setting some random number as shargvlen.

Signed-off-by: Ján Tomko <jtomko@xxxxxxxxxx>
Fixes: 740e4d705284ba0598258291c2656f50075486f0
---
tools/virt-login-shell-helper.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/virt-login-shell-helper.c b/tools/virt-login-shell-helper.c
index d9db883ee6..2db349754e 100644
--- a/tools/virt-login-shell-helper.c
+++ b/tools/virt-login-shell-helper.c
@@ -104,7 +104,7 @@ static int virLoginShellGetShellArgv(virConfPtr conf,
        (*shargv)[0] = g_strdup("/bin/sh");
        *shargvlen = 1;
    } else {
-        *shargvlen = virStringListLength((const char *const *)shargv);
+        *shargvlen = virStringListLength((const char *const *)*shargv);

Yay for:

 - casting,
 - functions that need casting, and
 - C rules that force such functions

Reviewed-by: Martin Kletzander <mkletzan@xxxxxxxxxx>

    }
    return 0;
}
--
2.26.2

Attachment: signature.asc
Description: PGP signature


[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