From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> rsp_len cannot be NULL since it checked for NULL in the beginning of the function. --- android/hal-sco.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/android/hal-sco.c b/android/hal-sco.c index b13eb91..62e16a8 100644 --- a/android/hal-sco.c +++ b/android/hal-sco.c @@ -265,8 +265,7 @@ static int sco_ipc_cmd(uint8_t service_id, uint8_t opcode, uint16_t len, goto failed; } - if (rsp_len) - *rsp_len = cmd.len; + *rsp_len = cmd.len; return SCO_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