From c1e051bfbab217d8b7ad30b1df1af2de0b8285c7 Mon Sep 17 00:00:00 2001 From: WebFreak001 Date: Mon, 10 Jul 2023 12:54:03 +0200 Subject: [PATCH] fix infinite allocating in context formatter --- src/dscanner/analysis/run.d | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/dscanner/analysis/run.d b/src/dscanner/analysis/run.d index 7d40d51..dc1af0a 100644 --- a/src/dscanner/analysis/run.d +++ b/src/dscanner/analysis/run.d @@ -133,7 +133,8 @@ private string formatContext(Message.Diagnostic diagnostic, scope const(char)[] import std.string : indexOf, lastIndexOf; if (diagnostic.startIndex >= diagnostic.endIndex || diagnostic.endIndex > code.length - || diagnostic.startColumn >= diagnostic.endColumn || diagnostic.endColumn == 0) + || diagnostic.startColumn >= diagnostic.endColumn || diagnostic.endColumn == 0 + || diagnostic.startColumn == 0) return null; auto lineStart = code.lastIndexOf('\n', diagnostic.startIndex) + 1;