Received: by 2002:a05:6a10:206:0:0:0:0 with SMTP id 6csp265881pxj; Fri, 14 May 2021 02:57:55 -0700 (PDT) X-Google-Smtp-Source: ABdhPJy1WpFzXarcJa41EsMUIGFS+czBpmzw2n9+M3if5maNMmm+TyLXlbMv+vXUIz2Qh56BNzCa X-Received: by 2002:a05:6e02:b2c:: with SMTP id e12mr23346543ilu.136.1620986275619; Fri, 14 May 2021 02:57:55 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1620986275; cv=none; d=google.com; s=arc-20160816; b=X+tsr+wF02G6k2V0ppe6k4mk7NY65xYksVMStdkTtJ2teiZs5A6+3betiNzoEBhnid 1vcPNzD8jL0s8jy1iTpGPp9BsrkAAm18otgdp7vhd5Osx0mTc5yClcfpCpYQczvFBfJh bubqwIT4bzk0tmt0aJvAx6ZpNDpALV7oYeROnVSofyCgT1eMUTAg0UDU8z3m2El7o2Nk vjJ+KCHkL0Kn0JgZfCfVlscPqxbU1vFgdT+3Poppzgj3j3YFFjC8MHm3zUadhcPEhoSm pt3Xw+7yhmAYbPErrAoapqcgdMwAEHLktEzEIUzEFTTIYCW2tA9WG7AH0xAF6beyxSMQ JMLg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:mime-version:message-id:date:subject:cc:to:from; bh=shFQCXvEFA807EDur2/9VBk5mptixBYtnIx88Jhck14=; b=CNPg16gExz7tHpGh+uKLUCb0DL5QwjwVWc7L8x/jCwzSDerh/+H93YZyfs4V+rjfBR etCyJMi9l/KwSOZ4963Kbgu1spKgTCv0CQw1VJaqJHEngfWdZGUXddQC8WyVqKjMmPF/ cxDfZTGJ2JGGsFzdSSu2zT1X7ztD5K+RU8B/B9NvlbYNTAhVpXL4alvaP33WomL1mey+ 4GC5cYFEMAHeA5xLEvW1xKO1zsW75bRsk8d8PZO10TbPDoRkddBv15U0j37jGJMYaTTP wJfD+ImnYEnrp1VMaGj0WDTKzLWSMEQi3lYbJFFWEWTUCL/4sD9y4ba5VpV/p95MEtNg eSSw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=huawei.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id e10si7028156jaq.25.2021.05.14.02.57.43; Fri, 14 May 2021 02:57:55 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=huawei.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232375AbhENHHb (ORCPT + 99 others); Fri, 14 May 2021 03:07:31 -0400 Received: from szxga07-in.huawei.com ([45.249.212.35]:2919 "EHLO szxga07-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230371AbhENHHb (ORCPT ); Fri, 14 May 2021 03:07:31 -0400 Received: from DGGEMS414-HUB.china.huawei.com (unknown [172.30.72.59]) by szxga07-in.huawei.com (SkyGuard) with ESMTP id 4FhKHs16hRzBvNb; Fri, 14 May 2021 15:03:37 +0800 (CST) Received: from localhost (10.174.179.215) by DGGEMS414-HUB.china.huawei.com (10.3.19.214) with Microsoft SMTP Server id 14.3.498.0; Fri, 14 May 2021 15:06:09 +0800 From: YueHaibing To: , , CC: , , YueHaibing Subject: [PATCH -next] ALSA: gus: Replace unsafe strcpy() with strscpy() Date: Fri, 14 May 2021 15:05:07 +0800 Message-ID: <20210514070507.16600-1-yuehaibing@huawei.com> X-Mailer: git-send-email 2.10.2.windows.1 MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.174.179.215] X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Fix smatch warning: sound/isa/gus/gus_main.c:396 snd_gus_check_version() error: strcpy() 'card->longname' too large for 'card->shortname' (80 vs 32) Even if this is not a real bug since the longest length of card->longname now is 31, replace strcpy() with strscpy() in order to avoid possible future mistake. Signed-off-by: YueHaibing --- sound/isa/gus/gus_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/isa/gus/gus_main.c b/sound/isa/gus/gus_main.c index b7518122a10d..7524ce5785de 100644 --- a/sound/isa/gus/gus_main.c +++ b/sound/isa/gus/gus_main.c @@ -384,7 +384,7 @@ static int snd_gus_check_version(struct snd_gus_card * gus) } } } - strcpy(card->shortname, card->longname); + strscpy(card->shortname, card->longname, sizeof(card->shortname)); gus->uart_enable = 1; /* standard GUSes doesn't have midi uart trouble */ snd_gus_init_control(gus); return 0; -- 2.17.1