Hi,
I try to debug and run the customscenode example and i get a segmenation fault ( didn't changed the code and all dependecy's are set )
any idea what causes this?
segmenation fault
are you sure that your pointeur are OK?
when you create it give them 0 for value.
to be sure you can use it test:
you can execute the debugger too without breakpoint to find information about the file the function and the line, it it will give you the call stack.
when you create it give them 0 for value.
to be sure you can use it test:
Code: Select all
if (pointeur)
{
//instruction if good
}
else
{
//instruction if bad
}