From 82256435987176ce977ca97bfa3d9efe703c1b0e Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Sun, 28 Apr 2024 11:28:09 -0400 Subject: [PATCH] Ignore lineInfoType 255 --- IDEHelper/COFF.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/IDEHelper/COFF.cpp b/IDEHelper/COFF.cpp index 6c01ad34..f23e37a4 100644 --- a/IDEHelper/COFF.cpp +++ b/IDEHelper/COFF.cpp @@ -3684,6 +3684,10 @@ CvCompileUnit* COFF::ParseCompileUnit(CvModuleInfo* moduleInfo, CvCompileUnit* c PTR_ALIGN(data, sectionData, 4); } } + else if (lineInfoType == 255) + { + // Ignore + } else { BF_ASSERT((lineInfoType >= DEBUG_S_SYMBOLS) && (lineInfoType <= DEBUG_S_COFF_SYMBOL_RVA));