From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <stable-bounces@dpdk.org> Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 3AE4EA0096 for <public@inbox.dpdk.org>; Thu, 14 Mar 2019 15:09:52 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 0DB4F4C9C; Thu, 14 Mar 2019 15:09:52 +0100 (CET) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 2BA353572; Thu, 14 Mar 2019 15:09:47 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 14 Mar 2019 07:09:46 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.58,478,1544515200"; d="scan'208";a="122656047" Received: from irsmsx109.ger.corp.intel.com ([163.33.3.23]) by orsmga007.jf.intel.com with ESMTP; 14 Mar 2019 07:09:45 -0700 Received: from irsmsx110.ger.corp.intel.com ([169.254.15.102]) by IRSMSX109.ger.corp.intel.com ([169.254.13.169]) with mapi id 14.03.0415.000; Thu, 14 Mar 2019 14:09:44 +0000 From: "Pattan, Reshma" <reshma.pattan@intel.com> To: "Chaitanya Babu, TalluriX" <tallurix.chaitanya.babu@intel.com>, "dev@dpdk.org" <dev@dpdk.org> CC: "Parthasarathy, JananeeX M" <jananeex.m.parthasarathy@intel.com>, "rmody@marvell.com" <rmody@marvell.com>, "shshaikh@marvell.com" <shshaikh@marvell.com>, "Xing, Beilei" <beilei.xing@intel.com>, "Zhang, Qi Z" <qi.z.zhang@intel.com>, "stable@dpdk.org" <stable@dpdk.org> Thread-Topic: [PATCH v6] drivers/net: fix possible overflow with strcat Thread-Index: AQHU2mrzG6FzgviktE2mHgmy0z5mtaYLKh1A Date: Thu, 14 Mar 2019 14:09:43 +0000 Message-ID: <3AEA2BF9852C6F48A459DA490692831F2A42DD0E@irsmsx110.ger.corp.intel.com> References: <1551963385-1234-1-git-send-email-tallurix.chaitanya.babu@intel.com> <1552570471-32372-1-git-send-email-tallurix.chaitanya.babu@intel.com> In-Reply-To: <1552570471-32372-1-git-send-email-tallurix.chaitanya.babu@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiMjViOGJkODgtMjRhNC00NWNmLTgyNjctZTUxOWZiNjZmMmRlIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiZkpLclp4bG1maStOWFJnY1VhOFwvaExqNkZ3S1NXTVhzaGFJdWRYVTNPUzlcL2JKNTI0Q2hEWWllQmpFaXVLdmZoIn0= x-ctpclassification: CTP_NT dlp-product: dlpe-windows dlp-version: 11.0.400.15 dlp-reaction: no-action x-originating-ip: [163.33.239.180] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-stable] [PATCH v6] drivers/net: fix possible overflow with strcat X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches <stable.dpdk.org> List-Unsubscribe: <https://mails.dpdk.org/options/stable>, <mailto:stable-request@dpdk.org?subject=unsubscribe> List-Archive: <http://mails.dpdk.org/archives/stable/> List-Post: <mailto:stable@dpdk.org> List-Help: <mailto:stable-request@dpdk.org?subject=help> List-Subscribe: <https://mails.dpdk.org/listinfo/stable>, <mailto:stable-request@dpdk.org?subject=subscribe> Errors-To: stable-bounces@dpdk.org Sender: "stable" <stable-bounces@dpdk.org> > -----Original Message----- > From: Chaitanya Babu, TalluriX > Sent: Thursday, March 14, 2019 1:35 PM > To: dev@dpdk.org > Cc: Pattan, Reshma <reshma.pattan@intel.com>; Parthasarathy, JananeeX M > <jananeex.m.parthasarathy@intel.com>; rmody@marvell.com; > shshaikh@marvell.com; Xing, Beilei <beilei.xing@intel.com>; Zhang, Qi Z > <qi.z.zhang@intel.com>; Chaitanya Babu, TalluriX > <tallurix.chaitanya.babu@intel.com>; stable@dpdk.org > Subject: [PATCH v6] drivers/net: fix possible overflow with strcat >=20 %s/strcat/strlcat?