Comment 3 for bug 285630

Revision history for this message
Alexey Torkhov (atorkhov) wrote :

Issue in wrong system-tinyxml patch used for Fedora package.
There was statements like
  const char *name_val = element->Attribute(TAG_name)->c_str();
instead of right ones
  const char *name_val = element->Attribute(TAG_name.c_str());

In libwfut cvs/git sources there is right version.
Closing the bug.