summaryrefslogtreecommitdiffstats
path: root/block
diff options
context:
space:
mode:
authorPeter Xu <peterx@redhat.com>2016-03-09 13:56:37 +0800
committerTimothy Pearson <tpearson@raptorengineering.com>2019-11-29 20:01:34 -0600
commit52fa6d3468b5d3683a5f1551eaa3eda8c7474f9c (patch)
treea102c5aeca9b7dcc44c0b313611ab5bd81fa6266 /block
parentba6e04bd9847b7a2e41dd52ca7b0e0cc5e376d8a (diff)
downloadhqemu-52fa6d3468b5d3683a5f1551eaa3eda8c7474f9c.zip
hqemu-52fa6d3468b5d3683a5f1551eaa3eda8c7474f9c.tar.gz
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>
Diffstat (limited to 'block')
-rw-r--r--block/qapi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/block/qapi.c b/block/qapi.c
index e0e6e96..1961cdf 100644
--- a/block/qapi.c
+++ b/block/qapi.c
@@ -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)) {
QType type = qobject_type(entry->value);
bool composite = (type == QTYPE_QDICT || type == QTYPE_QLIST);
- char key[strlen(entry->key) + 1];
+ char *key = g_malloc(strlen(entry->key) + 1);
int i;
/* 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) {
func_fprintf(f, "\n");
}
+ g_free(key);
}
}
OpenPOWER on IntegriCloud