stm32_i2c: Add missing NULL check. From Juha Niskanen
This commit is contained in:
parent
8d31651a1b
commit
6511afa1c2
@ -1399,7 +1399,7 @@ static int stm32_i2c_isr(struct stm32_i2c_priv_s *priv)
|
||||
* - or we close down by sending the stop bit
|
||||
*/
|
||||
|
||||
if (priv->msgc > 0)
|
||||
if (priv->msgc > 0 && priv->msgv != NULL)
|
||||
{
|
||||
if (priv->msgv->flags & I2C_M_NORESTART)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user