mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-02 05:45:58 +02:00
Fail silently on OOM.
This commit is contained in:
parent
af2dd181dd
commit
2d3a12da43
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ public class DwarfReader extends Dwarf implements ISymbolReader {
|
||||||
try {
|
try {
|
||||||
dwarfSections.put(element, section.loadSectionData());
|
dwarfSections.put(element, section.loadSectionData());
|
||||||
} catch (OutOfMemoryError e) {
|
} catch (OutOfMemoryError e) {
|
||||||
CCorePlugin.log(e);
|
// Don't log this error, handle it silently without any UI.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue