View | Details | Raw Unified | Return to bug 149428 | Differences between
and this patch

Collapse All | Expand All

(-)model/org/eclipse/cdt/internal/core/model/CModelManager.java (+4 lines)
Lines 562-567 Link Here
562
	public IBinaryFile createBinaryFile(IFile file) {
562
	public IBinaryFile createBinaryFile(IFile file) {
563
		BinaryParserConfig[] parsers = getBinaryParser(file.getProject());
563
		BinaryParserConfig[] parsers = getBinaryParser(file.getProject());
564
		int hints = 0;
564
		int hints = 0;
565
		File f = new File(file.getLocationURI());
566
		if (f.length() == 0)
567
			return null;
568
		
565
		for (int i = 0; i < parsers.length; i++) {
569
		for (int i = 0; i < parsers.length; i++) {
566
			IBinaryParser parser = null;
570
			IBinaryParser parser = null;
567
			try {
571
			try {

Return to bug 149428