* sysv_sem.cc (semundo_clear): Move condition to break from
inner loop to the right spot.
This commit is contained in:
parent
4c36016b57
commit
102bf65058
|
@ -1,3 +1,8 @@
|
|||
2012-11-23 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* sysv_sem.cc (semundo_clear): Move condition to break from
|
||||
inner loop to the right spot.
|
||||
|
||||
2012-11-12 Christopher Faylor <me.cygwin2012@cgf.cx>
|
||||
|
||||
* Makefile.in: Revamp for new configury.
|
||||
|
|
|
@ -529,10 +529,10 @@ semundo_clear(int semid, int semnum, struct thread *td)
|
|||
suptr->un_ent[suptr->un_cnt];
|
||||
continue;
|
||||
}
|
||||
}
|
||||
if (semnum != -1)
|
||||
break;
|
||||
}
|
||||
}
|
||||
i++, sunptr++;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue