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: [RFA] PR python/18565 - make Frame.function work for inline frames


Tom Tromey <tom@tromey.com> writes:

>    TRY
>      {
> +      char *funname;
> +      enum language funlang;
> +
>        FRAPY_REQUIRE_VALID (self, frame);
>  
> -      sym = find_pc_function (get_frame_address_in_block (frame));
> +      find_frame_funname (frame, &funname, &funlang, &sym);
> +      xfree (funname);
>      }
>    CATCH (except, RETURN_MASK_ALL)
>      {

Call xfree in CATCH block?  Otherwise, patch is good to me.

-- 
Yao (éå)


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