ソースを参照

V4L/DVB(12993b): gl860: Prevent a potential risk of zeroing a floating pointer

drivers/media/video/gspca/gl860/gl860.c: In function ‘gl860_build_control_table’:
drivers/media/video/gspca/gl860/gl860.c:119: warning: ‘sd_ctrls’ may be used uninitialized in this function

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab 15 年 前
コミット
0030ec38ce
1 ファイル変更2 行追加0 行削除
  1. 2 0
      drivers/media/video/gspca/gl860/gl860.c

+ 2 - 0
drivers/media/video/gspca/gl860/gl860.c

@@ -129,6 +129,8 @@ static int gl860_build_control_table(struct gspca_dev *gspca_dev)
 		sd_ctrls = sd_ctrls_ov2640;
 		sd_ctrls = sd_ctrls_ov2640;
 	else if (_OV9655_)
 	else if (_OV9655_)
 		sd_ctrls = sd_ctrls_ov9655;
 		sd_ctrls = sd_ctrls_ov9655;
+	else
+		return 0;
 
 
 	memset(sd_ctrls, 0, GL860_NCTRLS * sizeof(struct ctrl));
 	memset(sd_ctrls, 0, GL860_NCTRLS * sizeof(struct ctrl));