From 4de668c9146412ceafc0d11e605f4e06495f89eb Mon Sep 17 00:00:00 2001 From: Matt Ranostay Date: Thu, 23 Jan 2020 14:46:24 -0800 Subject: low-can: fix aborting on can_data not being an json_type_array Bug-AGL: SPEC-3129 Change-Id: I41928c5f4c467edb176ad6234c9b775e70035319 Signed-off-by: Matt Ranostay --- low-can-binding/binding/low-can-cb.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/low-can-binding/binding/low-can-cb.cpp b/low-can-binding/binding/low-can-cb.cpp index 4eac957f..ac894afc 100644 --- a/low-can-binding/binding/low-can-cb.cpp +++ b/low-can-binding/binding/low-can-cb.cpp @@ -617,7 +617,9 @@ static void write_raw_frame(afb_req_t request, const std::string& bus_name, mess } #endif - if(message->get_length() > 0 && message->get_length() <= message->get_maxdlen()) + if(message->get_length() > 0 && + message->get_length() <= message->get_maxdlen() && + json_object_get_type(can_data) == json_type_array) { std::vector data; for (int i = 0 ; i < message->get_length() ; i++) -- cgit 1.2.3-korg