12-18-2012 04:16 PM
Does anyone know what the following error means when trying to run my project:
Process 11514055 (xxxxxxxxxx) terminated SIGSEGV code=1 fltno=11 ip=7843558e(/base/usr/lib/libbbcascades.so.1@_ZN16
This has only started happening since adding a rather large javascript function. There are about 1000 lines of code in my main.qml.
Ive tried removing the code but still the same problem. Ive rebooted both the PC and dev alpha as well.
Solved! Go to Solution.
12-18-2012 06:24 PM
I would check your C++. Usually I see segmentation faults when I refer to a variable that is null.
12-18-2012 09:22 PM
12-19-2012 03:34 AM
Thanks guys.
There is no user c++ in this project yet so I checked all of the Javascript and found a place where I was removing all items from a dropdown list and then setting selectedindex to 0. After fixing this the problem was resolved ![]()
Thanks again