Bug in Attribute class constructor
Status: Beta
Brought to you by:
jonnymind
We've found a bug in the Attribute class constructor.
The parsing method uses a >> operator to get the
current character, thus skipping any occurring spaces.
(at line 35 of mxml_attribute.cpp)
We've replaced that with
while ( iStatus < 6 && ( in.get( chr ) ) ) {
We've tested this solution and it works correctly.
Hope that this will help you.
Regards,
Mark & Tony.