Re: [PATCH v3 15/26] hw: Fix error API violation around object_property_set_link()

2020-06-30 Thread Mark Cave-Ayland
On 30/06/2020 10:03, Markus Armbruster wrote: > The Error ** argument must be NULL, &error_abort, &error_fatal, or a > pointer to a variable containing NULL. Passing an argument of the > latter kind twice without clearing it in between is wrong: if the > first call sets an error, it no longer poi

[PATCH v3 15/26] hw: Fix error API violation around object_property_set_link()

2020-06-30 Thread Markus Armbruster
The Error ** argument must be NULL, &error_abort, &error_fatal, or a pointer to a variable containing NULL. Passing an argument of the latter kind twice without clearing it in between is wrong: if the first call sets an error, it no longer points to NULL for the second call. virtio_gpu_pci_base_r