@@ -1002,8 +1002,8 @@ static int extron_cec_adap_transmit(struct cec_adapter *adap, u8 attempts,
u32 signal_free_time, struct cec_msg *msg)
{
struct extron_port *port = cec_get_drvdata(adap);
- char buf[CEC_MAX_MSG_SIZE * 3 + 1];
- char cmd[CEC_MAX_MSG_SIZE * 3 + 13];
+ char buf[(CEC_MAX_MSG_SIZE - 1) * 3 + 1];
+ char cmd[(CEC_MAX_MSG_SIZE - 1) * 3 + 15];
unsigned int i;
if (port->disconnected)
@@ -1013,7 +1013,8 @@ static int extron_cec_adap_transmit(struct cec_adapter *adap, u8 attempts,
sprintf(buf + i * 3, "%%%02X", msg->msg[i + 1]);
snprintf(cmd, sizeof(cmd), "W%c%u*%u*%u*%sDCEC",
port->direction, port->port.port,
- cec_msg_initiator(msg), cec_msg_destination(msg), buf);
+ cec_msg_initiator(msg),
+ cec_msg_destination(msg), buf);
return extron_send_and_wait(port->extron, port, cmd, NULL);
}