Re: [PATCH] virsh: fix missing return value

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

 



On 08/27/2012 08:07 AM, Alex Jia wrote:
> Although virsh command raises a correct error information, the command status
> returns 0(true), this patch is used for fixing this issue.
> 
> Signed-off-by: Alex Jia <ajia@xxxxxxxxxx>
> ---
>  tools/virsh-host.c |    3 +++
>  1 files changed, 3 insertions(+), 0 deletions(-)
> 
> diff --git a/tools/virsh-host.c b/tools/virsh-host.c
> index da60895..2f3b413 100644
> --- a/tools/virsh-host.c
> +++ b/tools/virsh-host.c
> @@ -701,11 +701,13 @@ cmdQemuAgentCommand(vshControl *ctl, const vshCmd *cmd)
>      judge = vshCommandOptInt(cmd, "timeout", &timeout);
>      if (judge < 0) {
>          vshError(ctl, "%s", _("timeout number has to be a number"));
> +        goto cleanup;
>      } else if (judge > 0) {
>          judge = 1;
>      }
>      if (judge && timeout < 1) {
>          vshError(ctl, "%s", _("timeout must be positive"));
> +        goto cleanup;
>      }
>  
>      if (vshCommandOptBool(cmd, "async")) {
> @@ -719,6 +721,7 @@ cmdQemuAgentCommand(vshControl *ctl, const vshCmd *cmd)
>  
>      if (judge > 1) {
>          vshError(ctl, "%s", _("timeout, async and block options are exclusive"));
> +        goto cleanup;
>      }
>      result = virDomainQemuAgentCommand(dom, guest_agent_cmd, timeout, flags);
>  
> 

ACK, Martin.

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