Re: [PATCH] scripts: Fix potential null-deref

2025-04-18 Thread Tom Rini
On Fri, Apr 18, 2025 at 03:51:42PM +0200, Quentin Schulz wrote: > Hi Maks(?) > > On 4/18/25 10:19 AM, ant.v.morya...@gmail.com wrote: > > From: Maks Mishin > > > > Signed-off-by: Maks Mishin > > This seems to differ from the sender. Are you Maks? If not, you need to add > your Signed-off-by to

Re: [PATCH] scripts: Fix potential null-deref

2025-04-18 Thread Quentin Schulz
Hi Maks(?) On 4/18/25 10:19 AM, ant.v.morya...@gmail.com wrote: From: Maks Mishin Signed-off-by: Maks Mishin This seems to differ from the sender. Are you Maks? If not, you need to add your Signed-off-by to fulfill the DCO requirements. --- scripts/kconfig/menu.c | 6 -- 1 file c

[PATCH] scripts: Fix potential null-deref

2025-04-18 Thread ant . v . moryakov
From: Maks Mishin Signed-off-by: Maks Mishin --- scripts/kconfig/menu.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c index 5c5c1374..a0d0d2af 100644 --- a/scripts/kconfig/menu.c +++ b/scripts/kconfig/menu.c @@ -812,8 +

Re: [PATCH] scripts: Fix potential null-deref

2025-02-03 Thread Tom Rini
On Mon, Feb 03, 2025 at 07:50:08PM +0300, Maks Mishin wrote: > After having been compared to a NULL value at menu.c:799, > pointer 'sym' is dereferenced at menu.c:812. > > Signed-off-by: Maks Mishin > --- > scripts/kconfig/menu.c | 6 -- > 1 file changed, 4 insertions(+), 2 deletions(-) >

[PATCH] scripts: Fix potential null-deref

2025-02-03 Thread Maks Mishin
After having been compared to a NULL value at menu.c:799, pointer 'sym' is dereferenced at menu.c:812. Signed-off-by: Maks Mishin --- scripts/kconfig/menu.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c index 0fe7f3255a