This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] eval.c:evaluate_subexp_standard: Use RAII to avoid leaks


On 09/04/2017 08:45 PM, Pedro Alves wrote:
> While working on the no-debug-info debugging improvements series, I
> noticed these bare xfree calls, which lead to leaks if
> evaluate_subexp_standard throws.
> 
> Fix that by reworking make_params as a RAII class.  Ends up
> eliminating a couple heap allocations too.
> 
> gdb/ChangeLog:
> 2017-09-04  Pedro Alves  <palves@redhat.com>
> 
> 	* eval.c (make_params): Delete, refactored as ...
> 	(class fake_method): ... this new type's ctor.
> 	(fake_method::~fake_method): New.
> 	(evaluate_subexp_standard): Use 'fake_method'.

I'm pushing this in.

Thanks,
Pedro Alves


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]