Re: [PATCH] Fix crash on http

2019-09-18 Thread Daniel Kiper
On Tue, Sep 17, 2019 at 05:44:58PM +0200, Javier Martinez Canillas wrote: > From: Gustavo Luiz Duarte > > Don't free file->data on receiving FIN flag since it is used all over > without checking. http_close() will be called later to free that memory. > > https://bugzilla.redhat.com/show_bug.cgi?id

[PATCH] Fix crash on http

2019-09-17 Thread Javier Martinez Canillas
From: Gustavo Luiz Duarte Don't free file->data on receiving FIN flag since it is used all over without checking. http_close() will be called later to free that memory. https://bugzilla.redhat.com/show_bug.cgi?id=860834 Signed-off-by: Gustavo Luiz Duarte Signed-off-by: Javier Martinez Canillas

Re: [PATCH] Fix crash on http

2013-02-01 Thread Vladimir 'φ-coder/phcoder' Serbinenko
On 27.09.2012 19:55, Gustavo Luiz Duarte wrote: > > Don't free file->data on receiving FIN flag since it is used all over without > checking. http_close() will be called later to free that memory. > Downstream bug: http://bugzilla.redhat.com/show_bug.cgi?id=860834 This patch of not just freeing

[PATCH] Fix crash on http

2012-09-27 Thread Gustavo Luiz Duarte
Don't free file->data on receiving FIN flag since it is used all over without checking. http_close() will be called later to free that memory. Downstream bug: http://bugzilla.redhat.com/show_bug.cgi?id=860834 --- grub-core/net/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --g