Re: [PATCH v2] string-output-visitor: show structs as ""

2023-12-19 Thread Stefan Hajnoczi
On Tue, 19 Dec 2023 at 09:49, Markus Armbruster wrote: > > Stefan Hajnoczi writes: > > > StringOutputVisitor crashes when it visits a struct because > > ->start_struct() is NULL. > > > > Show "" instead of crashing. This is necessary because the > > virtio-blk-pci iothread-vq-mapping parameter th

Re: [PATCH v2] string-output-visitor: show structs as ""

2023-12-19 Thread Markus Armbruster
Stefan Hajnoczi writes: > StringOutputVisitor crashes when it visits a struct because > ->start_struct() is NULL. > > Show "" instead of crashing. This is necessary because the > virtio-blk-pci iothread-vq-mapping parameter that I'd like to introduce > soon is a list of IOThreadMapping structs. >

[PATCH v2] string-output-visitor: show structs as ""

2023-12-12 Thread Stefan Hajnoczi
StringOutputVisitor crashes when it visits a struct because ->start_struct() is NULL. Show "" instead of crashing. This is necessary because the virtio-blk-pci iothread-vq-mapping parameter that I'd like to introduce soon is a list of IOThreadMapping structs. This patch is a quick fix to solve th