Re: [PATCH v2 1/6] net: wget: prevent overwriting reserved memory

2023-09-05 Thread Masahisa Kojima
Hi Simon, On Sat, 2 Sept 2023 at 09:09, Simon Glass wrote: > > Hi Masahisa, > > On Fri, 1 Sept 2023 at 04:26, Masahisa Kojima > wrote: > > > > This introduces the valid range check to store the received > > blocks using lmb. The same logic is implemented in tftp. > > > > Signed-off-by: Masahisa

Re: [PATCH v2 1/6] net: wget: prevent overwriting reserved memory

2023-09-01 Thread Simon Glass
Hi Masahisa, On Fri, 1 Sept 2023 at 04:26, Masahisa Kojima wrote: > > This introduces the valid range check to store the received > blocks using lmb. The same logic is implemented in tftp. > > Signed-off-by: Masahisa Kojima > --- > net/wget.c | 76 +++

[PATCH v2 1/6] net: wget: prevent overwriting reserved memory

2023-09-01 Thread Masahisa Kojima
This introduces the valid range check to store the received blocks using lmb. The same logic is implemented in tftp. Signed-off-by: Masahisa Kojima --- net/wget.c | 76 +- 1 file changed, 69 insertions(+), 7 deletions(-) diff --git a/net/wget.