From 254bf807e5354c7b424d6fc28cb17c4f9ba43e35 Mon Sep 17 00:00:00 2001 From: Max Reitz Date: Tue, 14 Nov 2017 19:01:24 +0100 Subject: qapi/qlist: Add qlist_append_null() macro Besides the macro itself, this patch also adds a corresponding Coccinelle rule. Signed-off-by: Max Reitz Reviewed-by: Eric Blake Reviewed-by: Alberto Garcia Message-id: 20171114180128.17076-3-mreitz@redhat.com Signed-off-by: Max Reitz --- scripts/coccinelle/qobject.cocci | 3 +++ 1 file changed, 3 insertions(+) (limited to 'scripts/coccinelle/qobject.cocci') 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); ) -- cgit v1.2.3