Re: [PATCH 5/5] tools/xl: Fix potential deallocation bug

2022-04-22 Thread Elliott Mitchell
Huh, never got around to replying to this. Too many things going on, too many distractions... On Wed, Jan 05, 2022 at 03:05:23PM +, Anthony PERARD wrote: > On Thu, Dec 10, 2020 at 03:09:06PM -0800, Elliott Mitchell wrote: > > There is potential for the info and info_free variable's purposes

Re: [PATCH 5/5] tools/xl: Fix potential deallocation bug

2022-01-05 Thread Anthony PERARD
On Thu, Dec 10, 2020 at 03:09:06PM -0800, Elliott Mitchell wrote: > There is potential for the info and info_free variable's purposes to > diverge. If info was overwritten with a distinct value, yet info_free > still needed deallocation a bug would occur on this line. Preemptively > address this

Re: [PATCH 5/5] tools/xl: Fix potential deallocation bug

2021-12-29 Thread Luca Fancellu
> On 10 Dec 2020, at 23:09, Elliott Mitchell wrote: > > There is potential for the info and info_free variable's purposes to > diverge. If info was overwritten with a distinct value, yet info_free > still needed deallocation a bug would occur on this line. Preemptively > address this issue

[PATCH 5/5] tools/xl: Fix potential deallocation bug

2021-12-27 Thread Elliott Mitchell
There is potential for the info and info_free variable's purposes to diverge. If info was overwritten with a distinct value, yet info_free still needed deallocation a bug would occur on this line. Preemptively address this issue (making use of divergent info/info_free values is under