Re: [Mesa-dev] [PATCH] intel/aubinator: fix resource leak in aub_file_open

2016-12-04 Thread Nayan Deshmukh
Yes, you are right, sorry for the noise. Regards, Nayan. On Mon, Dec 5, 2016 at 10:14 AM, Jason Ekstrand wrote: > Calling exit() is going to cause the program to terminate and all of its > resources will get cleaned up by the OS. There's no real reason why we need > to free anything first. > >

Re: [Mesa-dev] [PATCH] intel/aubinator: fix resource leak in aub_file_open

2016-12-04 Thread Jason Ekstrand
Calling exit() is going to cause the program to terminate and all of its resources will get cleaned up by the OS. There's no real reason why we need to free anything first. On Sun, Dec 4, 2016 at 9:47 AM, Nayan Deshmukh wrote: > CovID: 1373563 > > Signed-off-by: Nayan Deshmukh > --- > src/int

[Mesa-dev] [PATCH] intel/aubinator: fix resource leak in aub_file_open

2016-12-04 Thread Nayan Deshmukh
CovID: 1373563 Signed-off-by: Nayan Deshmukh --- src/intel/tools/aubinator.c | 9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/intel/tools/aubinator.c b/src/intel/tools/aubinator.c index 5e3a684..f64a843 100644 --- a/src/intel/tools/aubinator.c +++ b/src/intel/tool