Greg Kurz <gr...@kaod.org> writes: > On Tue, 16 Oct 2018 19:41:28 +0200 > Markus Armbruster <arm...@redhat.com> wrote: > >> Calling error_report() in a function that takes an Error ** argument >> is suspicious. 9p-handle.c's handle_parse_opts() does that, and then >> fails without setting an error. Wrong. Its caller crashes when it >> tries to report the error: >> >> $ qemu-system-x86_64 -nodefaults -fsdev id=foo,fsdriver=handle >> qemu-system-x86_64: -fsdev id=foo,fsdriver=handle: warning: handle >> backend is deprecated >> qemu-system-x86_64: -fsdev id=foo,fsdriver=handle: fsdev: No path >> specified >> Segmentation fault (core dumped) >> >> Screwed up when commit 91cda4e8f37 (v2.12.0) converted the function to >> Error. Fix by calling error_setg() instead of error_report(). >> >> Fixes: 91cda4e8f372602795e3a2f4bd2e3adaf9f82255 >> Cc: Greg Kurz <gr...@kaod.org> >> Signed-off-by: Markus Armbruster <arm...@redhat.com> >> Acked-by: Greg Kurz <gr...@kaod.org> >> --- > > Hi Markus, > > FWIW you had a Reviewed-by from Eric. > > https://lists.nongnu.org/archive/html/qemu-devel/2018-10/msg03297.html
Fixed in v4. Thanks!