I just booted an older kernel 2.4.22.
At this version everything works as expected! Valgrind reports no
errors! This error now maybe has to be transferred to the valgrind or
kernel 2.6 bug page.
Bye Gunther
signature.asc
Description: This is a digitally signed message part
I reproduced this error on two further debian sid installations (but not
fresh installed ones)
The example source code:
#include
using std::cerr;
using std::cout;
using std::endl;
int main()
{
try
{
int a_number = 7;
throw a_number;
}
catch(int number_exception)
{
cerr <<
Package: g++
Version: 3.3.3 20040110
Severity: serious
Every exception thrown is signaled by valgrind as a invalid read of 4
bytes. It seems there is something broken in the stack unrolling
mechanism.
On Debian testing, the code works as expected.
Example code:
#include
int main(int argc, cha
3 matches
Mail list logo