1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Fixed 71656 - [Parser] Infinite Loop on Out of Memory Exception

This commit is contained in:
John Camelon 2004-08-10 17:39:05 +00:00
parent cd9edbcd4f
commit 7645cbc478

View file

@ -217,6 +217,10 @@ public abstract class Parser extends ExpressionParser implements IParser
break;
}
}
catch( OutOfMemoryError oome )
{
logThrowable( "translationUnit", oome ); //$NON-NLS-1$
}
catch( Exception e )
{
logException( "translationUnit", e ); //$NON-NLS-1$