mirror of https://github.com/xemu-project/xemu.git
block/qapi: fix unbounded stack for dump_qdict
Using heap instead of stack for better safety. Signed-off-by: Peter Xu <peterx@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
853ccfed8f
commit
5eda622768
|
@ -669,7 +669,7 @@ static void dump_qdict(fprintf_function func_fprintf, void *f, int indentation,
|
||||||
for (entry = qdict_first(dict); entry; entry = qdict_next(dict, entry)) {
|
for (entry = qdict_first(dict); entry; entry = qdict_next(dict, entry)) {
|
||||||
QType type = qobject_type(entry->value);
|
QType type = qobject_type(entry->value);
|
||||||
bool composite = (type == QTYPE_QDICT || type == QTYPE_QLIST);
|
bool composite = (type == QTYPE_QDICT || type == QTYPE_QLIST);
|
||||||
char key[strlen(entry->key) + 1];
|
char *key = g_malloc(strlen(entry->key) + 1);
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
/* replace dashes with spaces in key (variable) names */
|
/* replace dashes with spaces in key (variable) names */
|
||||||
|
@ -683,6 +683,7 @@ static void dump_qdict(fprintf_function func_fprintf, void *f, int indentation,
|
||||||
if (!composite) {
|
if (!composite) {
|
||||||
func_fprintf(f, "\n");
|
func_fprintf(f, "\n");
|
||||||
}
|
}
|
||||||
|
g_free(key);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue