[libvirt] [PATCH] Add missing break in LXC loop device setup

From: "Daniel P. Berrange" <berrange@redhat.com> When setting up disks with loop devices for LXC, one of the switch cases was missing a 'break' causing it to fallthrough to an error condition. Signed-off-by: Daniel P. Berrange <berrange@redhat.com> --- src/lxc/lxc_controller.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lxc/lxc_controller.c b/src/lxc/lxc_controller.c index ce46070..128271f 100644 --- a/src/lxc/lxc_controller.c +++ b/src/lxc/lxc_controller.c @@ -448,6 +448,7 @@ static int virLXCControllerSetupLoopDevices(virLXCControllerPtr ctrl) fd = virLXCControllerSetupLoopDeviceDisk(disk); if (fd < 0) goto cleanup; + break; default: virReportError(VIR_ERR_CONFIG_UNSUPPORTED, -- 1.8.1.4

On 03/12/13 12:53, Daniel P. Berrange wrote:
From: "Daniel P. Berrange" <berrange@redhat.com>
When setting up disks with loop devices for LXC, one of the switch cases was missing a 'break' causing it to fallthrough to an error condition.
Signed-off-by: Daniel P. Berrange <berrange@redhat.com> --- src/lxc/lxc_controller.c | 1 + 1 file changed, 1 insertion(+)
ACK. PEter
participants (2)
-
Daniel P. Berrange
-
Peter Krempa