1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Check if the list of variables doesn't exist.

This commit is contained in:
Mikhail Khodjaiants 2002-08-18 21:25:11 +00:00
parent a07d1424da
commit a2d2f711a3

View file

@ -572,6 +572,8 @@ public class CStackFrame extends CDebugElement
protected void disposeAllVariables()
{
if ( fVariables == null )
return;
Iterator it = fVariables.iterator();
while( it.hasNext() )
{