[libvirt] [PATCH] in Vbox driver, OpenHardDisk is called with NULL instead of

2009-09-29 Thread Florian Vichot
This patch replaces the use of NULL with empty strings () in a call to OpenHardDisk, which otherwise fails with E_INVALIDARG. Florian diff --git a/src/vbox/vbox_tmpl.c b/src/vbox/vbox_tmpl.c index c02b18c..f5a8c97 100644 --- a/src/vbox/vbox_tmpl.c +++ b/src/vbox/vbox_tmpl.c @@ -3206,9 +3206,9 @@

Re: [libvirt] [PATCH] in Vbox driver, OpenHardDisk is called with NULL instead of

2009-09-29 Thread Pritesh Kothari
On Tuesday 29 September 2009 12:27:49 Florian Vichot wrote: This patch replaces the use of NULL with empty strings () in a call to OpenHardDisk, which otherwise fails with E_INVALIDARG. The patch fix's it but the more appropriate fix would be as below. Regards, Pritesh diff --git

Re: [libvirt] [PATCH] in Vbox driver, OpenHardDisk is called with NULL instead of

2009-09-29 Thread Daniel Veillard
On Tue, Sep 29, 2009 at 02:18:41PM +0200, Pritesh Kothari wrote: On Tuesday 29 September 2009 12:27:49 Florian Vichot wrote: This patch replaces the use of NULL with empty strings () in a call to OpenHardDisk, which otherwise fails with E_INVALIDARG. The patch fix's it but the more