From: Tim Lammens Date: Thu, 11 Sep 2014 05:05:54 +0000 (+0530) Subject: Fix memory leak in libio/wfileops.c do_ftell_wide [BZ #17370] X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d2c37d028d48337d00200248340de0e4a893456b;p=thirdparty%2Fglibc.git Fix memory leak in libio/wfileops.c do_ftell_wide [BZ #17370] (cherry picked from commit 984c0ea97f649c869130a1ff099098e2b6f70aad) Conflicts: NEWS --- diff --git a/ChangeLog b/ChangeLog index f456c1a3c06..9ebf81e651b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-09-11 Tim Lammens + + [BZ #17370] + * libio/wfileops (do_ftell_wide): Free OUT. + 2014-09-16 Siddhesh Poyarekar Jakub Jelinek diff --git a/NEWS b/NEWS index a9991cc3de5..c555f7591c8 100644 --- a/NEWS +++ b/NEWS @@ -9,7 +9,7 @@ Version 2.20.1 * The following bugs are resolved with this release: - 17266, 17371. + 17266, 17370, 17371. Version 2.20 diff --git a/libio/wfileops.c b/libio/wfileops.c index f123add354f..ebc06e85de3 100644 --- a/libio/wfileops.c +++ b/libio/wfileops.c @@ -711,6 +711,7 @@ do_ftell_wide (_IO_FILE *fp) return WEOF; offset += outstop - out; + free (out); } /* We don't trust _IO_read_end to represent the current file offset