[Ada] Fix memory leak in GNAT.Expect.Non_Blocking_Spawn on Windows
gcc/ada/ * libgnat/g-expect.adb (Non_Blocking_Spawn): Deallocate elements on Arg_List after calling Set_Up_Child_Communications.
This commit is contained in:
parent
64f4351d83
commit
29cd42e019
1 changed files with 6 additions and 0 deletions
|
@ -1181,6 +1181,12 @@ package body GNAT.Expect is
|
|||
Set_Up_Child_Communications
|
||||
(Descriptor, Pipe1, Pipe2, Pipe3, Command_With_Path.all,
|
||||
C_Arg_List'Address);
|
||||
|
||||
-- On Windows systems we need to release memory taken for Arg_List
|
||||
|
||||
for A of Arg_List loop
|
||||
Free (A);
|
||||
end loop;
|
||||
end if;
|
||||
|
||||
Free (Command_With_Path);
|
||||
|
|
Loading…
Add table
Reference in a new issue