]> git.baikalelectronics.ru Git - kernel.git/commit
ALSA: trident: Suppress gcc string warning
authorTakashi Iwai <tiwai@suse.de>
Thu, 26 Jul 2018 12:58:03 +0000 (14:58 +0200)
committerTakashi Iwai <tiwai@suse.de>
Thu, 26 Jul 2018 13:01:37 +0000 (15:01 +0200)
commit7c348de243d52eb668d97ca1ba5304241e2ef292
treea646443a51ae7e622f32acfd7df38ed5420b83cb
parentd39faafee83c663bd3c302f35ff9adfbfdf396dc
ALSA: trident: Suppress gcc string warning

The meddlesome gcc warns about the possible shortname string in
trident driver code:
  sound/pci/trident/trident.c: In function ‘snd_trident_probe’:
  sound/pci/trident/trident.c:126:2: warning: ‘strcat’ accessing 17 or more bytes at offsets 36 and 20 may overlap 1 byte at offset 36 [-Wrestrict]
  strcat(card->shortname, card->driver);

It happens since gcc calculates the possible string size from
card->driver, but this can't be true since we did set the string just
before that, and they are much shorter.

For shutting it up, use the exactly same string set to card->driver
for strcat() to card->shortname, too.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/trident/trident.c