From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> rsp_len cannot be NULL since it is checked above and dereferenced. Remove static analyzers warnings. --- android/hal-ipc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/android/hal-ipc.c b/android/hal-ipc.c index 494ba85..363072c 100644 --- a/android/hal-ipc.c +++ b/android/hal-ipc.c @@ -462,8 +462,7 @@ int hal_ipc_cmd(uint8_t service_id, uint8_t opcode, uint16_t len, void *param, } } - if (rsp_len) - *rsp_len = cmd.len; + *rsp_len = cmd.len; return BT_STATUS_SUCCESS; -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html