[libvirt] [PATCH] Fix missing error dispatch in virDomainLxcEnterNamespace

2013-03-12 Thread Daniel P. Berrange
From: Daniel P. Berrange berra...@redhat.com The virDomainLxcEnterNamespace method mistakenly uses virCheckFlags, which returns immediately instead of virCheckFlagsGoto which jumps to the error cleanup patch where there is a virDispatchError call --- src/libvirt-lxc.c | 2 +- 1 file changed, 1

Re: [libvirt] [PATCH] Fix missing error dispatch in virDomainLxcEnterNamespace

2013-03-12 Thread Eric Blake
On 03/12/2013 11:37 AM, Daniel P. Berrange wrote: From: Daniel P. Berrange berra...@redhat.com The virDomainLxcEnterNamespace method mistakenly uses virCheckFlags, which returns immediately instead of virCheckFlagsGoto which jumps to the error cleanup patch where there is a virDispatchError