public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] media: atomisp-mt9m114: Fix pointer dereferenced before checking
@ 2022-05-30  7:58 Haowen Bai
  2022-05-30  9:25 ` Dan Carpenter
  2022-05-30 11:22 ` Tommaso Merciai
  0 siblings, 2 replies; 5+ messages in thread
From: Haowen Bai @ 2022-05-30  7:58 UTC (permalink / raw)
  To: Mauro Carvalho Chehab, Sakari Ailus, Greg Kroah-Hartman
  Cc: Haowen Bai, linux-media, linux-staging, linux-kernel

The info->data is dereferencing before null checking, so move
it after checking.

Signed-off-by: Haowen Bai <baihaowen@meizu.com>
---
 drivers/staging/media/atomisp/i2c/atomisp-mt9m114.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/staging/media/atomisp/i2c/atomisp-mt9m114.c b/drivers/staging/media/atomisp/i2c/atomisp-mt9m114.c
index 00d6842c07d6..3c81ab73cdae 100644
--- a/drivers/staging/media/atomisp/i2c/atomisp-mt9m114.c
+++ b/drivers/staging/media/atomisp/i2c/atomisp-mt9m114.c
@@ -616,13 +616,15 @@ static int mt9m114_get_intg_factor(struct i2c_client *client,
 				   struct camera_mipi_info *info,
 				   const struct mt9m114_res_struct *res)
 {
-	struct atomisp_sensor_mode_data *buf = &info->data;
+	struct atomisp_sensor_mode_data *buf;
 	u32 reg_val;
 	int ret;
 
 	if (!info)
 		return -EINVAL;
 
+	buf = &info->data;
+
 	ret =  mt9m114_read_reg(client, MISENSOR_32BIT,
 				REG_PIXEL_CLK, &reg_val);
 	if (ret)
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-05-31  1:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-30  7:58 [PATCH] media: atomisp-mt9m114: Fix pointer dereferenced before checking Haowen Bai
2022-05-30  9:25 ` Dan Carpenter
2022-05-30 11:22 ` Tommaso Merciai
2022-05-30 11:37   ` Tommaso Merciai
2022-05-31  1:41     ` baihaowen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox