diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2018-07-05 12:58:05 -0300 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2018-10-26 17:17:32 +0200 |
commit | 7396972021f0d1386f8cb14cacd64b1fe1237fd7 (patch) | |
tree | e290840cf99996b0299426f68f3df57e6abb8b9d /qobject/block-qdict.c | |
parent | 6a1f42bd7978eea0109390dc6263c034ff313c24 (diff) | |
download | qemu-7396972021f0d1386f8cb14cacd64b1fe1237fd7.zip qemu-7396972021f0d1386f8cb14cacd64b1fe1237fd7.tar.gz qemu-7396972021f0d1386f8cb14cacd64b1fe1237fd7.tar.bz2 |
qobject: Catch another straggler for use of qdict_put_str()
Patch created mechanically by rerunning:
$ spatch --sp-file scripts/coccinelle/qobject.cocci \
--macro-file scripts/cocci-macro-file.h \
--dir . --in-place
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <20180705155811.20366-2-f4bug@amsat.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'qobject/block-qdict.c')
-rw-r--r-- | qobject/block-qdict.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qobject/block-qdict.c b/qobject/block-qdict.c index 42054cc..1487cc5 100644 --- a/qobject/block-qdict.c +++ b/qobject/block-qdict.c @@ -577,7 +577,7 @@ static QObject *qdict_crumple_for_keyval_qiv(QDict *src, Error **errp) if (!tmp) { tmp = qdict_clone_shallow(src); } - qdict_put(tmp, ent->key, qstring_from_str(s)); + qdict_put_str(tmp, ent->key, s); g_free(buf); } |