diff options
| author | Alexander Larsson <alexl@redhat.com> | 2010-07-19 16:27:42 +0200 |
|---|---|---|
| committer | Marc-André Lureau <marcandre.lureau@gmail.com> | 2012-03-20 15:25:49 +0100 |
| commit | 7897a338db23c29746dbd6062cbc615a3f15dbb4 (patch) | |
| tree | e487dd900c5dec1a96c38b9b3f73ffcfb6be9b7f /python_modules/demarshal.py | |
| parent | efba88ce725d91d9c33e44332b64f737cc1a07b6 (diff) | |
| download | spice-common-7897a338db23c29746dbd6062cbc615a3f15dbb4.tar.gz spice-common-7897a338db23c29746dbd6062cbc615a3f15dbb4.tar.xz spice-common-7897a338db23c29746dbd6062cbc615a3f15dbb4.zip | |
Don't send CursorHeader if cursor_flags is NONE
Diffstat (limited to 'python_modules/demarshal.py')
| -rw-r--r-- | python_modules/demarshal.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/python_modules/demarshal.py b/python_modules/demarshal.py index 4aba7b0..f259ead 100644 --- a/python_modules/demarshal.py +++ b/python_modules/demarshal.py @@ -708,7 +708,10 @@ def write_switch_parser(writer, container, switch, dest, scope): if switch.has_end_attr(): dest2 = dest.child_at_end(writer, m.member_type) elif switch.has_attr("anon"): - dest2 = dest + if t.is_struct() and not m.has_attr("to_ptr"): + dest2 = dest.child_sub(m.name) + else: + dest2 = dest else: if t.is_struct(): dest2 = dest.child_sub(switch.name + "." + m.name) |
