Skip to content
  1. Jun 28, 2019
    • Colin Ian King's avatar
      ALSA: xen-front: fix unintention integer overflow on left shifts · 3fc41476
      Colin Ian King authored
      
      
      Shifting the integer value 1 is evaluated using 32-bit
      arithmetic and then used in an expression that expects a 64-bit
      value, so there is potentially an integer overflow. Fix this
      by using the BIT_ULL macro to perform the shift.
      
      [ Note: as of the time being, no actual integer overflow hits because
        all values are less than 32bit, not including the extended 3-byte or
        DSD formats.  But this is the right fix for future usage, of
        course. -- tiwai ]
      
      Addresses-Coverity: ("Unintentional integer overflow")
      Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
      Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
      3fc41476
  2. May 21, 2019
  3. Apr 04, 2019
  4. Dec 18, 2018
  5. Sep 20, 2018
  6. Jul 27, 2018
  7. May 31, 2018
  8. May 30, 2018
  9. May 29, 2018
    • Arnd Bergmann's avatar
      ALSA: xen: ensure nul-terminated device name · 4c0eaac7
      Arnd Bergmann authored
      
      
      gcc-8 warns that pcm_instance->name is not necessarily terminated correctly
      if the input is more than 80 characters long or lacks a termination byte
      itself:
      
      In function 'strncpy',
          inlined from 'cfg_device' at sound/xen/xen_snd_front_cfg.c:399:3,
          inlined from 'xen_snd_front_cfg_card' at sound/xen/xen_snd_front_cfg.c:509:9:
      include/linux/string.h:254:9: error: '__builtin_strncpy' specified bound 80 equals destination size [-Werror=stringop-truncation]
        return __builtin_strncpy(p, q, size);
      
      Using strlcpy() instead of strncpy() makes this a bit safer.
      
      Fixes: fd3b3604 ("ALSA: xen-front: Read sound driver configuration from Xen store")
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      Reviewed-by: default avatarOleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
      Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
      4c0eaac7
  10. May 28, 2018
  11. May 16, 2018
Loading