From: David Hunt Date: Fri, 26 Apr 2019 14:04:54 +0000 (+0100) Subject: examples/power: fix json null termination X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=8f8f876bd76f9ea996f0e80f32137aa9c2c2071a;p=dpdk.git examples/power: fix json null termination coverity complains about a null-termination after a read, so we terminate once we exit the do-while read loop. Coverity issue: 337680 Fixes: a63504a90f ("examples/power: add JSON string handling") Cc: stable@dpdk.org Signed-off-by: David Hunt Reviewed-by: Anatoly Burakov --- diff --git a/examples/vm_power_manager/channel_monitor.c b/examples/vm_power_manager/channel_monitor.c index 971e4f2bcd..4a287109b1 100644 --- a/examples/vm_power_manager/channel_monitor.c +++ b/examples/vm_power_manager/channel_monitor.c @@ -822,12 +822,7 @@ read_json_packet(struct channel_info *chan_info) break; } while (indent > 0); - if (indent > 0) - /* - * We've broken out of the read loop without getting - * a closing brace, so throw away the data - */ - json_data[idx] = 0; + json_data[idx] = '\0'; if (strlen(json_data) == 0) continue;