Skip to content

Commit

Permalink
Catching exception in _outputPane.OutputString
Browse files Browse the repository at this point in the history
  • Loading branch information
VioletGiraffe committed Dec 25, 2014
1 parent 392ea40 commit a484b0f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CPPCheckPlugin/ICodeAnalyzer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,8 @@ private void analyzerOutputHandler(object sendingProcess, DataReceivedEventArgs
if (!String.IsNullOrEmpty(output))
{
addProblemsToToolwindow(parseOutput(output));
_outputPane.OutputString(output + "\n");
try { _outputPane.OutputString(output + "\n"); }
catch (Exception) { }
}
}

Expand Down

0 comments on commit a484b0f

Please sign in to comment.