• A
    ath10k: avoid possible string overflow · 6707ba01
    Arnd Bergmann 提交于
    The way that 'strncat' is used here raised a warning in gcc-8:
    
    drivers/net/wireless/ath/ath10k/wmi.c: In function 'ath10k_wmi_tpc_stats_final_disp_tables':
    drivers/net/wireless/ath/ath10k/wmi.c:4649:4: error: 'strncat' output truncated before terminating nul copying as many bytes from a string as its length [-Werror=stringop-truncation]
    
    Effectively, this is simply a strcat() but the use of strncat() suggests
    some form of overflow check. Regardless of whether this might actually
    overflow, using strlcat() instead of strncat() avoids the warning and
    makes the code more robust.
    
    Fixes: bc64d052 ("ath10k: debugfs support to get final TPC stats for 10.4 variants")
    Signed-off-by: NArnd Bergmann <arnd@arndb.de>
    Signed-off-by: NKalle Valo <kvalo@codeaurora.org>
    6707ba01
wmi.c 291.8 KB