Re: [PATCH] fuzz: Fix leak when assembling datadir path string

2020-07-17 Thread Alexander Bulekov
On 200717 1847, Thomas Huth wrote: > On 17/07/2020 18.35, Alexander Bulekov wrote: > > We freed the string containing the final datadir path, but did not free > > the path to the executable's directory that we get from > > g_path_get_dirname(). Fix that. > > > > Reported-by: Thomas Huth > > Signe

Re: [PATCH] fuzz: Fix leak when assembling datadir path string

2020-07-17 Thread no-reply
Patchew URL: https://patchew.org/QEMU/20200717163523.1591-1-alx...@bu.edu/ Hi, This series failed the docker-mingw@fedora build test. Please find the testing commands and their output below. If you have Docker installed, you can probably reproduce it locally. === TEST SCRIPT BEGIN === #! /bin

[PATCH] fuzz: Fix leak when assembling datadir path string

2020-07-17 Thread Alexander Bulekov
We freed the string containing the final datadir path, but did not free the path to the executable's directory that we get from g_path_get_dirname(). Fix that. Reported-by: Thomas Huth Signed-off-by: Alexander Bulekov --- I ran it with Thomas' fixed build-oss-fuzz job: https://gitlab.com/a1xndr

Re: [PATCH] fuzz: Fix leak when assembling datadir path string

2020-07-17 Thread Thomas Huth
On 17/07/2020 18.35, Alexander Bulekov wrote: > We freed the string containing the final datadir path, but did not free > the path to the executable's directory that we get from > g_path_get_dirname(). Fix that. > > Reported-by: Thomas Huth > Signed-off-by: Alexander Bulekov > --- > > I ran it