summaryrefslogtreecommitdiff
path: root/scripts/coccinelle
diff options
context:
space:
mode:
authorMax Reitz <mreitz@redhat.com>2017-11-14 19:01:24 +0100
committerMax Reitz <mreitz@redhat.com>2017-11-17 18:21:30 +0100
commit254bf807e5354c7b424d6fc28cb17c4f9ba43e35 (patch)
treea10103027809e070d2fe04d08b49be47bbeebff2 /scripts/coccinelle
parent84be629d5545b5ccc5bff2824e4288677e27de9c (diff)
downloadqemu-254bf807e5354c7b424d6fc28cb17c4f9ba43e35.tar.gz
qapi/qlist: Add qlist_append_null() macro
Besides the macro itself, this patch also adds a corresponding Coccinelle rule. Signed-off-by: Max Reitz <mreitz@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Alberto Garcia <berto@igalia.com> Message-id: 20171114180128.17076-3-mreitz@redhat.com Signed-off-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'scripts/coccinelle')
-rw-r--r--scripts/coccinelle/qobject.cocci3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/coccinelle/qobject.cocci b/scripts/coccinelle/qobject.cocci
index 1120eb1a42..47bcafe9a9 100644
--- a/scripts/coccinelle/qobject.cocci
+++ b/scripts/coccinelle/qobject.cocci
@@ -41,4 +41,7 @@ expression Obj, E;
|
- qlist_append(Obj, qstring_from_str(E));
+ qlist_append_str(Obj, E);
+|
+- qlist_append(Obj, qnull());
++ qlist_append_null(Obj);
)