http://bugzilla.novell.com/show_bug.cgi?id=517683 Summary: scpm-1.1.7-5.1: bad call to C++STL erase Classification: openSUSE Product: openSUSE 11.2 Version: Factory Platform: All OS/Version: openSUSE 11.1 Status: NEW Severity: Normal Priority: P5 - None Component: Other AssignedTo: bnc-team-screening@forge.provo.novell.com ReportedBy: dcb314@hotmail.com QAContact: qa@suse.de Found By: --- I just had a look at factory package scpm-1.1.7-5.1 For source code file scpm-1.1.7/src/main/scpm_helpers.cc around line 583 is the source code while( it != resources.end() ) { if ( *it == resources[i] ) { resources.erase( it ); size--; } else it++; This looks wrong, because the return value from the erase is not used. Suggest new code while( it != resources.end() ) { if ( *it == resources[i] ) { it = resources.erase( it ); size--; } else it++; -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.