public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* re: [SCSI] compat_ioct: fix bsg SG_IO
@ 2011-11-02  8:16 Dan Carpenter
  2011-11-02  8:58 ` James Bottomley
  0 siblings, 1 reply; 3+ messages in thread
From: Dan Carpenter @ 2011-11-02  8:16 UTC (permalink / raw)
  To: FUJITA Tomonori; +Cc: Giridhar Malavali, linux-scsi, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 831 bytes --]

84eb8fb42c120 "[SCSI] compat_ioct: fix bsg SG_IO" introduces an
uninitialized variable use.

   278  static int sg_ioctl_trans(unsigned int fd, unsigned int cmd,
   279                          sg_io_hdr32_t __user *sgio32)
   280  {
   281          sg_io_hdr_t __user *sgio;
   282          u16 iovec_count;
   283          u32 data;
   284          void __user *dxferp;
   285          int err;
   286          int interface_id;
   287  
   288          if (get_user(interface_id, &sgio32->interface_id))
                                            ^^^^^^
sgio32 is unitialized here.  Unfortunately Gcc doesn't warn about it.

   289                  return -EFAULT;
   290          if (interface_id != 'S')
   291                  return sys_ioctl(fd, cmd, (unsigned long)sgio32);

regards,
dan carpenter

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

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

end of thread, other threads:[~2011-11-02  9:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-02  8:16 [SCSI] compat_ioct: fix bsg SG_IO Dan Carpenter
2011-11-02  8:58 ` James Bottomley
2011-11-02  9:24   ` Dan Carpenter

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