From 05b57748274492aa76e530e4513e5f8e9a39a735 Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Tue, 16 Oct 2018 21:46:44 +0200 Subject: [PATCH] cov: shutdown warning Since previous patch reverted coverity patch as this case is intentional, provide override this coverity warning. --- libdm/libdm-stats.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libdm/libdm-stats.c b/libdm/libdm-stats.c index e9bfa9de9..014395756 100644 --- a/libdm/libdm-stats.c +++ b/libdm/libdm-stats.c @@ -1009,6 +1009,7 @@ static int _stats_parse_list(struct dm_stats *dms, const char *resp) * dm_task_get_message_response() returns a 'const char *' but * since fmemopen also permits "w" it expects a 'char *'. */ + /* coverity[alloc_strlen] intentional */ if (!(list_rows = fmemopen((char *)resp, strlen(resp), "r"))) return_0; @@ -1240,6 +1241,7 @@ static int _stats_parse_region(struct dm_stats *dms, const char *resp, * dm_task_get_message_response() returns a 'const char *' but * since fmemopen also permits "w" it expects a 'char *'. */ + /* coverity[alloc_strlen] intentional */ stats_rows = fmemopen((char *)resp, strlen(resp), "r"); if (!stats_rows) goto_bad;