Skip to content
Snippets Groups Projects
Commit e991da5b authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Revert plugin message parsing to non-line-based as plugins can generate partial messages

parent c805d879
No related branches found
No related tags found
No related merge requests found
......@@ -367,14 +367,7 @@ int LLPluginMessage::parse(const std::string &message)
clear();
boost::iostreams::stream<boost::iostreams::array_source> input(message.data(), message.size());
#if LL_DEBUG
S32 parse_result = LLSDSerialize::fromXML(mMessage, input);
#else
S32 parse_result = LLSDSerialize::fromXMLDocument(mMessage, input);
#endif
return (int)parse_result;
return LLSDSerialize::fromXML(mMessage, input);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment