Re: bug-report: ash: fix a memory leak

2014-12-23 Thread Rich Felker
On Wed, Dec 24, 2014 at 10:32:19AM +0800, yhu2 wrote: > The script which triggers the leak: > > while true > do > while true > do > break; > done done > > someone had fixed this bug, the commit is: > http://git.busybox.net/busybox/commit/shell/ash.c?id=4ba6c5d3ba3d2c7922af

bug-report: ash: fix a memory leak

2014-12-23 Thread yhu2
The script which triggers the leak: while true do while true do break; donehttp://git.busybox.net/busybox/commit/shell/ash.c?id=4ba6c5d3ba3d2c7922aff6b5c2e73b8325f1cf17 but this commit results in crash running some shell scripts, so it was reverted. I am trying to resol