mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
virsh: completer: use signed variable for XPathNodeSet errors
Although virXPathNodeSet is unlikely to return -1, we should check for it properly or not at all. Signed-off-by: Ján Tomko <jtomko@redhat.com> Reviewed-by: Martin Kletzander <mkletzan@redhat.com>
This commit is contained in:
parent
c4e6ae9d7d
commit
ce2483f619
@ -55,7 +55,7 @@ virshAllocpagesPagesizeCompleter(vshControl *ctl,
|
||||
{
|
||||
g_autoptr(xmlXPathContext) ctxt = NULL;
|
||||
virshControlPtr priv = ctl->privData;
|
||||
unsigned int npages = 0;
|
||||
int npages = 0;
|
||||
g_autofree xmlNodePtr *pages = NULL;
|
||||
g_autoptr(xmlDoc) doc = NULL;
|
||||
size_t i = 0;
|
||||
@ -106,7 +106,7 @@ virshCellnoCompleter(vshControl *ctl,
|
||||
{
|
||||
g_autoptr(xmlXPathContext) ctxt = NULL;
|
||||
virshControlPtr priv = ctl->privData;
|
||||
unsigned int ncells = 0;
|
||||
int ncells = 0;
|
||||
g_autofree xmlNodePtr *cells = NULL;
|
||||
g_autoptr(xmlDoc) doc = NULL;
|
||||
size_t i = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user