public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/12540] New: Memory leak in locale::locale(const char*)
@ 2003-10-08 12:22 peturr02 at ru dot is
  2003-10-08 12:25 ` [Bug libstdc++/12540] " peturr02 at ru dot is
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: peturr02 at ru dot is @ 2003-10-08 12:22 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12540

           Summary: Memory leak in locale::locale(const char*)
           Product: gcc
           Version: 3.4
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: libstdc++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: peturr02 at ru dot is
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: i686-pc-linux-gnu
  GCC host triplet: i686-pc-linux-gnu
GCC target triplet: i686-pc-linux-gnu

There is a memory leak in the constructor locale::locale(const char*).
The string allocated with strdup in the following snippet is leaked
under some conditions.

                // LANG may set a default different from "C".
                char* __env = std::getenv("LANG");
                if (!__env || std::strcmp(__env, "") == 0 
                    || std::strcmp(__env, "C") == 0 
                    || std::strcmp(__env, "POSIX") == 0)
                  __res = strdup("C");
                else 
                  __res = strdup(__env);

[...]

                      }
                    __str.erase(__str.end() - 1);
                    _M_impl = new _Impl(__str.c_str(), 1);
                  }
                // ... otherwise either an additional instance of
                // the "C" locale or LANG.
                else if (std::strcmp(__res, "C") == 0)
                  (_M_impl = _S_classic)->_M_add_reference();
                else
                  _M_impl = new _Impl(__res, 1);
                std::free(__res);

The leak occurs if the calls to locale::_Impl::_Impl throws an exception,
in that case free isn't called.


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2004-01-29  2:35 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-10-08 12:22 [Bug libstdc++/12540] New: Memory leak in locale::locale(const char*) peturr02 at ru dot is
2003-10-08 12:25 ` [Bug libstdc++/12540] " peturr02 at ru dot is
2003-10-08 12:26 ` peturr02 at ru dot is
2003-10-08 13:08 ` paolo at gcc dot gnu dot org
2003-10-16 17:24 ` cvs-commit at gcc dot gnu dot org
2003-10-16 17:59 ` paolo at gcc dot gnu dot org
2003-10-17 18:20 ` pinskia at gcc dot gnu dot org
2004-01-29  2:35 ` pcarlini at suse dot de

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).