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:
parent
cd9edbcd4f
commit
7645cbc478
1 changed files with 4 additions and 0 deletions
|
@ -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$
|
||||
|
|
Loading…
Add table
Reference in a new issue