Re: [PATCH v2] IOMUX: Fix buffer overflow in iomux_replace_device()

2021-04-25 Thread Yuichiro Goto
On Fri, Apr 23, 2021 at 10:09 PM Andy Shevchenko wrote: > > On Fri, Apr 23, 2021 at 05:08:05PM +0900, Yuichiro Goto wrote: > > Use of strcat() against an uninitialized buffer would lead > > to buffer overflow. This patch fixes it. > > Thanks for report! > > Can you also add a Fixes tag? > > > Sign

Re: [PATCH v2] IOMUX: Fix buffer overflow in iomux_replace_device()

2021-04-23 Thread Andy Shevchenko
On Fri, Apr 23, 2021 at 05:08:05PM +0900, Yuichiro Goto wrote: > Use of strcat() against an uninitialized buffer would lead > to buffer overflow. This patch fixes it. Thanks for report! Can you also add a Fixes tag? > Signed-off-by: Yuichiro Goto > Cc: Peter Robinson > Cc: Andy Shevchenko > C

[PATCH v2] IOMUX: Fix buffer overflow in iomux_replace_device()

2021-04-23 Thread Yuichiro Goto
Use of strcat() against an uninitialized buffer would lead to buffer overflow. This patch fixes it. Signed-off-by: Yuichiro Goto Cc: Peter Robinson Cc: Andy Shevchenko Cc: Nicolas Saenz Julienne --- Changes for v2: - Add "IOMUX" in title common/iomux.c | 5 - 1 file changed, 4 insertion