From 12aa890d71348185e81b7415df1e172df22dfdba Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Mon, 25 Sep 2017 13:38:38 +0300 Subject: [PATCH] fix crash on error log parsing --- src/dlangide/ui/outputpanel.d | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/dlangide/ui/outputpanel.d b/src/dlangide/ui/outputpanel.d index acb6495..68f0bd6 100644 --- a/src/dlangide/ui/outputpanel.d +++ b/src/dlangide/ui/outputpanel.d @@ -206,12 +206,21 @@ class CompilerLogWidget : LogWidget { if(!match.empty) { if (compilerLogIssueClickHandler.assigned) { import std.conv:to; - int row = to!int(match[2]) - 1; + int row = 0; + try { + row = to!int(match[2]) - 1; + } catch (Exception e) { + row = 0; + } if (row < 0) row = 0; int col = 0; if (match[3]) { - col = to!int(match[3]) - 1; + try { + col = to!int(match[3]) - 1; + } catch (Exception e) { + col = 0; + } if (col < 0) col = 0; }