You say labview 3.2, but the screenshot shows you are using C++, no need to update labview
anhow, the data access exception (which leads to the fatal error) is caused by a pointer error, which are nasty, often hard to find errors due to memory alotment. I try to avoid pointers where they are not needed, there are none in our 2011 code. Try replacing all the pointers with stack variables or references.
From
Code:
type *name = new type()
name->member
to
Code:
type name = type()
name.member