1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 06:45:43 +02:00

PR: 53470

This commit is contained in:
Alena Laskavaia 2008-07-15 18:10:13 +00:00
parent 584e951711
commit 9d31c68ce5

View file

@ -231,6 +231,7 @@ public class CThread extends CDebugElement implements ICThread, IRestart, IResum
* @return <code>true</code> if all frames are same
*/
private boolean compareStackFrames( ICDIStackFrame[] newFrames, List oldFrames, int offset, int length ) {
if (offset<0) return false;
int index = offset;
Iterator it = oldFrames.iterator();
while( it.hasNext() && index < newFrames.length ) {