> > Well, a test program that triggers the SIGABRT under gdb would be useful.
The attached program causes a SIGABRT for me,
Thanks,
C.
#include <string>
using namespace std;
int main (char **argv, int argc) {
string t = "linux rocks!";
t.replace(LONG_MAX, 1, "sigabrt here");
return 0;
}

