mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-23 16:48:06 +02:00
- fixed GH #362: Defect in Var::parseString when there is no space between value and newline
- fixed GH #314: JSON parsing bug - added GH #313: MetaColumn additions for Data::ODBC and Data::SQLite
This commit is contained in:
@@ -96,7 +96,7 @@ void ParseHandler::startObject()
|
||||
|
||||
void ParseHandler::endObject()
|
||||
{
|
||||
_stack.pop();
|
||||
if (!_stack.empty()) _stack.pop();
|
||||
}
|
||||
|
||||
|
||||
@@ -132,7 +132,7 @@ void ParseHandler::startArray()
|
||||
|
||||
void ParseHandler::endArray()
|
||||
{
|
||||
_stack.pop();
|
||||
if (!_stack.empty()) _stack.pop();
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user