On 4/24/20 3:43 AM, Markus Armbruster wrote:
When command FOO has no arguments, its generated qmp_marshal_FOO() is
a bit confusing.  Make it simpler:

      visit_start_struct(v, NULL, NULL, 0, &err);
      if (err) {
          goto out;
      }
-
-    if (!err) {
-        visit_check_struct(v, &err);
-    }
+    visit_check_struct(v, &err);
      visit_end_struct(v, NULL);
      if (err) {
          goto out;
      }

Signed-off-by: Markus Armbruster <arm...@redhat.com>
---
  scripts/qapi/commands.py | 40 ++++++++++++++++++++++++----------------
  1 file changed, 24 insertions(+), 16 deletions(-)


A bit more complex in the generator, but the generated code is indeed better.

Reviewed-by: Eric Blake <ebl...@redhat.com>

--
Eric Blake, Principal Software Engineer
Red Hat, Inc.           +1-919-301-3226
Virtualization:  qemu.org | libvirt.org


Reply via email to