diff options
author | Tim Lammens <tim.lammens@gmail.com> | 2014-09-11 10:35:54 +0530 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2014-09-16 19:59:51 +1000 |
commit | d2c37d028d48337d00200248340de0e4a893456b (patch) | |
tree | 2a9767d650666f5684a1ceebe8d58c5bc2276617 | |
parent | 979add9f87577c10c629af82586e48b686672134 (diff) | |
download | glibc-d2c37d028d48337d00200248340de0e4a893456b.tar.gz glibc-d2c37d028d48337d00200248340de0e4a893456b.tar.xz glibc-d2c37d028d48337d00200248340de0e4a893456b.zip |
Fix memory leak in libio/wfileops.c do_ftell_wide [BZ #17370]
(cherry picked from commit 984c0ea97f649c869130a1ff099098e2b6f70aad) Conflicts: NEWS
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | libio/wfileops.c | 1 |
3 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index f456c1a3c0..9ebf81e651 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-09-11 Tim Lammens <tim.lammens@gmail.com> + + [BZ #17370] + * libio/wfileops (do_ftell_wide): Free OUT. + 2014-09-16 Siddhesh Poyarekar <siddhesh@redhat.com> Jakub Jelinek <jakub@redhat.com> diff --git a/NEWS b/NEWS index a9991cc3de..c555f7591c 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 f123add354..ebc06e85de 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 |