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:
parent
986e7966dd
commit
1d40fa3114
@ -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 )
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user