1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

bug #1258: Adds a endl character to any string before parsing

This commit is contained in:
Ruben S. Montero 2012-06-28 18:35:52 +02:00
parent 986e7966dd
commit 1d40fa3114

View File

@ -150,9 +150,12 @@ int Template::parse_str_or_xml(const string &parse_str, string& error_msg)
}
else
{
char * error_char = 0;
char * error_char = 0;
ostringstream oss;
rc = parse(parse_str, &error_char);
oss << parse_str << endl;
rc = parse(oss.str(), &error_char);
if ( rc != 0 )
{