Re: [PATCH1/1]sqfs: sqfs_tokenize() should fill the tokens list instead of free items

2021-11-02 Thread jc . w4ng

Re: [PATCH1/1]sqfs: sqfs_tokenize() should fill the tokens list instead of free items

2021-11-02 Thread Miquel Raynal
Hi Jincheng, jc.w...@gmail.com wrote on Sun, 31 Oct 2021 18:24:47 +0800: > -- Forwarded message - > 发件人: Jincheng Wang > Date: 2021年10月31日周日 下午6:23 > Subject: Re: [PATCH1/1]sqfs: sqfs_tokenize() should fill the tokens list > instead of free items >

Fwd: [PATCH1/1]sqfs: sqfs_tokenize() should fill the tokens list instead of free items

2021-10-31 Thread Jincheng Wang
-- Forwarded message - 发件人: Jincheng Wang Date: 2021年10月31日周日 下午6:23 Subject: Re: [PATCH1/1]sqfs: sqfs_tokenize() should fill the tokens list instead of free items To: Miquel Raynal Hello, Apologize for a late reply ,and I made a mistake in wirting mail. Here is the email

Re: [PATCH1/1]sqfs: sqfs_tokenize() should fill the tokens list instead of free items

2021-10-27 Thread Miquel Raynal
Hello, tr...@konsulko.com wrote on Tue, 26 Oct 2021 15:25:56 -0400: > On Sat, Oct 16, 2021 at 10:19:48AM +0800, Jincheng Wang wrote: > > > We can delete two lines of code to avoid double free bug, but still a wild > > pointers bug. > > > > A test for wild pointers: > > sqfsls host 0

Re: [PATCH1/1]sqfs: sqfs_tokenize() should fill the tokens list instead of free items

2021-10-26 Thread Tom Rini
On Sat, Oct 16, 2021 at 10:19:48AM +0800, Jincheng Wang wrote: > We can delete two lines of code to avoid double free bug, but still a wild > pointers bug. > > A test for wild pointers: > sqfsls host 0 1//2/3//4/5 > > Fill the tokens list can solve it well. > > > Signed-off-by: Jincheng

[PATCH1/1]sqfs: sqfs_tokenize() should fill the tokens list instead of free items

2021-10-15 Thread Jincheng Wang
We can delete two lines of code to avoid double free bug, but still a wild pointers bug. A test for wild pointers: sqfsls host 0 1//2/3//4/5 Fill the tokens list can solve it well. Signed-off-by: Jincheng Wang --- fs/squashfs/sqfs.c | 5 +++-- 1 file changed, 3 insertions(+), 2