1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 14:15:23 +02:00

2004-07-16 Alain Magloire

Fix for PR 70255

	* model/org/eclipse/cdt/internal/core/model/Binary.java
This commit is contained in:
Alain Magloire 2004-07-16 19:26:00 +00:00
parent cd1605463c
commit 1f27dd0547
2 changed files with 8 additions and 2 deletions

View file

@ -1,4 +1,10 @@
2004-07-17 Brad Jarvinen.
2004-07-16 Alain Magloire
Fix for PR 70255
* model/org/eclipse/cdt/internal/core/model/Binary.java
2004-07-16 Brad Jarvinen
Fix Pr 70252

View file

@ -280,7 +280,7 @@ public class Binary extends Openable implements IBinary {
private void addVariable(OpenableInfo info, ISymbol symbol, Map hash) throws CModelException {
IPath filename = filename = symbol.getFilename();
BinaryVariable variable = null;
if (filename != null) {
if (filename != null && !filename.isEmpty()) {
BinaryModule module = null;
if (hash.containsKey(filename)) {
module = (BinaryModule)hash.get(filename);