quote:
Originally posted by patluja
Whole Tomato team, does it matter that the name data2 contains the name data?
It's more like data is a UNION defined somewhere in the headers by Microsoft.
Did this:
bool Function(int someInt)
{
	data test=0;
	// ...
	bool initial;
	// ...
	//char data[4096];
	// ...
	if (initial) {
		// ...
		char dita2[4096];
		// ...
		strcpy(data, dita2); // Watch these two variables
		// ...
	}
	else {
		// ...
	}
	//...
	return true;
}
(I even called your data2 "dita2" to see if you're right).
Hovering over data test=0;, the VA View shows that data is a member of _NLA_BLOB, which is a typedef'd struct.
I believe this is already covered with 
case=192