Am 26.07.2013 um 18:40 hat Eric Blake geschrieben: > On 07/23/2013 07:03 AM, Kevin Wolf wrote: > > qdict_flatten(): For each nested QDict with key x, all fields with key y > > are moved to this QDict and their key is renamed to "x.y". This operation > > is applied recursively for nested QDicts. > > > > Signed-off-by: Kevin Wolf <kw...@redhat.com> > > --- > > include/qapi/qmp/qdict.h | 1 + > > qobject/qdict.c | 50 > > ++++++++++++++++++++++++++++++++++++++++++++++++ > > 2 files changed, 51 insertions(+) > > > > + while (entry != NULL) { > > + > > + next = qdict_next(qdict, entry); > > next points to a position in the unmodified qdict... > > > + value = qdict_entry_value(entry); > > + new_key = NULL; > > + delete = false; > > + > > + if (prefix) { > > + qobject_incref(value); > > + new_key = g_strdup_printf("%s.%s", prefix, entry->key); > > + qdict_put_obj(target, new_key, value); > > + delete = true; > > + } > > + > > + if (qobject_type(value) == QTYPE_QDICT) { > > + qdict_do_flatten(qobject_to_qdict(value), target, > > + new_key ? new_key : entry->key); > > + delete = true; > > + } > > + > > + if (delete) { > > + qdict_del(qdict, entry->key); > > + > > + /* Restart loop after modifying the iterated QDict */ > > + entry = qdict_first(qdict); > > ...now entry points to the head of the modified qdict, since the > modification may have re-arranged where we would iterate next... > > > + } > > + > > + entry = next; > > ...oops, we just undid that, and pointed it back to the old qdict > iteration location. I think you're missing a continue statement inside > 'if (delete)'.
Gah, this is getting embarrassing. Who stole my continue? :-) You're right of course, thanks for catching that. I'll fix it. Kevin