https://bugzilla.novell.com/show_bug.cgi?id=745733 https://bugzilla.novell.com/show_bug.cgi?id=745733#c19 --- Comment #19 from Jean Delvare <jdelvare@suse.com> 2012-10-25 10:55:58 UTC --- For completeness: (gdb) list /usr/include/boost/smart_ptr/intrusive_ptr.hpp:94 89 if( px != 0 ) intrusive_ptr_add_ref( px ); 90 } 91 92 #endif 93 94 intrusive_ptr(intrusive_ptr const & rhs): px( rhs.px ) 95 { 96 if( px != 0 ) intrusive_ptr_add_ref( px ); 97 } 98 (gdb) But maybe frame #7 is more interesting: #7 0xb6a17a32 in proxy (self=access outside bounds of object referenced via synthetic pointer) at /usr/src/debug/libzypp-10.4.5/zypp/pool/PoolImpl.h:196 I suppose this isn't supposed to happen. (gdb) list /usr/src/debug/libzypp-10.4.5/zypp/pool/PoolImpl.h:196 191 ResPoolProxy proxy( ResPool self ) const 192 { 193 checkSerial(); 194 if ( !_poolProxy ) 195 { 196 _poolProxy.reset( new ResPoolProxy( self, *this ) ); 197 } 198 return *_poolProxy; 199 } 200 (gdb) -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.