From dbc15625df8f6f180df306d2bdf352f80d8fae19 Mon Sep 17 00:00:00 2001 From: Alena Laskavaia Date: Thu, 27 Nov 2008 14:12:11 +0000 Subject: [PATCH] [118739] - fixed error parser matching file, applied patch --- .../src/org/eclipse/cdt/core/ErrorParserManager.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/ErrorParserManager.java b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/ErrorParserManager.java index c6c49be890c..783fee6577f 100644 --- a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/ErrorParserManager.java +++ b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/ErrorParserManager.java @@ -272,6 +272,9 @@ public class ErrorParserManager extends OutputStream { if (resourceLocation == null) { return false; } + if (location.getDevice()==null) { + resourceLocation = resourceLocation.setDevice(null); + } if (location.isAbsolute()) { return location.equals(resourceLocation); } else {