]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
libio: Attempt wide backup free only for non-legacy code
authorSiddhesh Poyarekar <siddhesh@sourceware.org>
Tue, 3 Sep 2024 18:58:33 +0000 (14:58 -0400)
committerFlorian Weimer <fweimer@redhat.com>
Wed, 11 Sep 2024 07:34:07 +0000 (09:34 +0200)
_wide_data and _mode are not available in legacy code, so do not attempt
to free the wide backup buffer in legacy code.

Resolves: BZ #32137 and BZ #27821

Signed-off-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
Reviewed-by: Florian Weimer <fweimer@redhat.com>
(cherry picked from commit ae4d44b1d501421ad9a3af95279b8f4d1546f1ce)

NEWS
libio/genops.c

diff --git a/NEWS b/NEWS
index 3304e3870fee530c3a63eadae28c498ada6acfb1..8431eb0d514b29583a537a98aa33347e53e3451d 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -45,6 +45,7 @@ The following bugs are resolved with this release:
 
   [20975] Deferred cancellation triggers in __check_pf and looses lock leading to deadlock
   [27576] gmon: improve mcount overflow handling
+  [27821] ungetc: Fix backup buffer leak on program exit
   [29039] Corrupt DTV after reuse of a TLS module ID following dlclose with unused TLS
   [29444] gmon: Fix allocated buffer overflow (bug 29444)
   [30053] time: strftime %s returns -1 after 2038 on 32 bits systems
@@ -69,6 +70,7 @@ The following bugs are resolved with this release:
   [31965] rseq extension mechanism does not work as intended
   [31968] mremap implementation in C does not handle arguments correctly
   [32052] Name space violation in fortify wrappers
+  [32137] libio: Attempt wide backup free only for non-legacy code
 \f
 Version 2.37
 
index 5530ebc403b27f15fa981ef1b6819e5ae1ff442f..5e1caaf011bab1ae2ca579e69938e14e666def71 100644 (file)
@@ -799,7 +799,7 @@ _IO_unbuffer_all (void)
       /* Free up the backup area if it was ever allocated.  */
       if (_IO_have_backup (fp))
        _IO_free_backup_area (fp);
-      if (fp->_mode > 0 && _IO_have_wbackup (fp))
+      if (!legacy && fp->_mode > 0 && _IO_have_wbackup (fp))
        _IO_free_wbackup_area (fp);
 
       if (! (fp->_flags & _IO_UNBUFFERED)