libvirt/backport-vshCommandStringGetArg-Drop-sz.patch

43 lines
1.2 KiB
Diff
Raw Normal View History

From 6d3c4b49c08d5fcf42f324af0d04551619e4109f Mon Sep 17 00:00:00 2001
From: Michal Privoznik <mprivozn@redhat.com>
Date: Thu, 7 Jan 2021 17:59:55 +0100
Subject: [PATCH 3/4] vshCommandStringGetArg: Drop @sz
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
This variable is unused since introduction of the function in
v0.8.5~150.
origin commit: https://gitlab.com/libvirt/libvirt/-/commit/9b9542586cc047075469053606d1e12cb017b5ca
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
Signed-off-by: Chenxi Mao <chenxi.mao@suse.com>
---
tools/vsh.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/tools/vsh.c b/tools/vsh.c
index 3646f37cea..f5fa7b6f6f 100644
--- a/tools/vsh.c
+++ b/tools/vsh.c
@@ -1641,7 +1641,6 @@ vshCommandStringGetArg(vshControl *ctl, vshCommandParser *parser, char **res,
{
bool single_quote = false;
bool double_quote = false;
- int sz = 0;
char *p = parser->pos;
char *q = g_strdup(p);
@@ -1695,7 +1694,6 @@ vshCommandStringGetArg(vshControl *ctl, vshCommandParser *parser, char **res,
}
*q++ = *p++;
- sz++;
}
if (double_quote) {
if (report)
--
2.33.0