mirror of https://github.com/mirror/busybox.git
ash: popstackmark is reported trying to pop until NULL
is seen (which isn't possible), prevent this.1_5_stable
parent
5df955fce2
commit
93ebd4f58d
|
@ -1216,6 +1216,9 @@ popstackmark(struct stackmark *mark)
|
|||
{
|
||||
struct stack_block *sp;
|
||||
|
||||
if (!mark->stackp)
|
||||
return;
|
||||
|
||||
INT_OFF;
|
||||
markp = mark->marknext;
|
||||
while (stackp != mark->stackp) {
|
||||
|
|
Loading…
Reference in New Issue