[Bug libstdc++/13864] stl_hastable.h Line 527

pinskia at gcc dot gnu dot org gcc-bugzilla@gcc.gnu.org
Mon Jan 26 13:23:00 GMT 2004


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-01-26 13:23 -------
Here is the full source, n __n is initialized:
  _Node* _M_new_node(const value_type& __obj)
  {
    _Node* __n = _M_get_node();
    __n->_M_next = 0;
    try {
      _Construct(&__n->_M_val, __obj);
      return __n;
    }
    catch(...)
      {
        _M_put_node(__n);
        __throw_exception_again;
      }
  }

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |INVALID


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



More information about the Gcc-bugs mailing list