We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8b50fd7 + 269fff6 commit 942e27fCopy full SHA for 942e27f
builder/src/build_command_manager-console_writers.adb
@@ -185,9 +185,11 @@ package body Build_Command_Manager.Console_Writers is
185
UTF8 : constant String := Unknown_To_UTF8 (Item, Success'Access);
186
begin
187
if Success then
188
- Self.Console.Insert_With_Links_Protected (UTF8, Add_LF => False);
+ if Self.Console /= null then
189
+ Self.Console.Insert_With_Links_Protected (UTF8, Add_LF => False);
190
+ end if;
191
Tools_Output_Parser (Self.all).Parse_Standard_Output (UTF8, Command);
- else
192
+ elsif Self.Console /= null then
193
Self.Console.Get_Console_Messages_Window.Insert
194
("Could not convert process output to UTF-8",
195
Mode => Error);
0 commit comments