patches/gcc/2.95.3/140-deque-leak-fix.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Mar 03 17:41:59 2009 +0000 (2009-03-03)
changeset 1219 2b875ed306c2
permissions -rw-r--r--
Allow user to add a directory component in the sys-root path.
Rename CT_DEBUG_INSTALL_DIR to CT_DEBUGROOT_DIR (to match CT_SYSROOT_DIR).
As a side effect, fix creating lib64->lib symlinks.

/trunk/scripts/build/debug/100-dmalloc.sh | 2 1 1 0 +-
/trunk/scripts/build/debug/400-ltrace.sh | 2 1 1 0 +-
/trunk/scripts/build/debug/300-gdb.sh | 6 3 3 0 +++---
/trunk/scripts/build/debug/500-strace.sh | 2 1 1 0 +-
/trunk/scripts/build/debug/200-duma.sh | 6 3 3 0 +++---
/trunk/scripts/crosstool-NG.sh.in | 16 7 9 0 +++++++---------
/trunk/scripts/functions | 2 1 1 0 +-
/trunk/config/toolchain.in | 17 17 0 0 +++++++++++++++++
8 files changed, 34 insertions(+), 19 deletions(-)
     1 [See also http://gcc.gnu.org/ml/libstdc++/2001-11/msg00133.html ]
     2 
     3 Date: Fri, 16 Nov 2001 16:06:22 -0500
     4 From: Phil Edwards <pedwards at disaster dot jaj dot com>
     5 To: gcc-patches at gcc dot gnu dot org
     6 Subject: [libstdc++ trunk & 3.0]  Fix deque memory leak
     7 Message-ID: <20011116160622.A23094@disaster.jaj.com>
     8 
     9 
    10 As discussed on the libstdc++ mailing list.  Tested on i686/linux.
    11 
    12 
    13 
    14 2001-11-16  Paolo Carlini  <pcarlini@unitus.it>
    15 
    16 	* include/bits/stl_deque.h (deque::erase()):  Fix memory leak.
    17 
    18 
    19 [rediffed against 2.95.3 -- dank]
    20 
    21 --- gcc-2.95.3/libstdc++/stl/stl_deque.h.old	2001-01-01 09:48:22.000000000 -0800
    22 +++ gcc-2.95.3/libstdc++/stl/stl_deque.h	2006-02-18 15:24:17.000000000 -0800
    23 @@ -1052,7 +1052,7 @@
    24        copy_backward(_M_start, __first, __last);
    25        iterator __new_start = _M_start + __n;
    26        destroy(_M_start, __new_start);
    27 -      _M_destroy_nodes(__new_start._M_node, _M_start._M_node);
    28 +      _M_destroy_nodes(_M_start._M_node, __new_start._M_node);  /* fixed per http://gcc.gnu.org/ml/libstdc++/2001-11/msg00139.html */
    29        _M_start = __new_start;
    30      }
    31      else {