Re: [Qemu-block] [PATCH v4 03/11] rbd: Close image in qemu_rbd_open() error path

2018-10-19 Thread Eric Blake
On 10/19/18 11:30 AM, Kevin Wolf wrote: Commit e2b8247a322 introduced an error path in qemu_rbd_open() after calling rbd_open(), but neglected to close the image again in this error path. The error path should contain everything that the regular close function qemu_rbd_close() contains. This

[Qemu-block] [PATCH v4 03/11] rbd: Close image in qemu_rbd_open() error path

2018-10-19 Thread Kevin Wolf
Commit e2b8247a322 introduced an error path in qemu_rbd_open() after calling rbd_open(), but neglected to close the image again in this error path. The error path should contain everything that the regular close function qemu_rbd_close() contains. This adds the missing rbd_close() call.