Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
1.2.11
-
Windows 7, .Net Framework 4, MS Visual C# 2010 Express, hardware and operating system platform x64, application platform x86
Description
In file src\Layout\Pattern\StackTracePatternConverter.cs (lines 108-114) is:
108: if (stackFrameIndex > stackframes.Length)
109:
113:
114: StackFrame stackFrame = stackframes[stackFrameIndex];
Exception is trown in line 114. To solve that problem please change line 108 to:
108: if (stackFrameIndex >= stackframes.Length)