- 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:
Alex Fabijanic
2014-04-29 21:25:30 -05:00
parent f038ac4e63
commit 8a9e7792d9
9 changed files with 23 additions and 6 deletions

View File

@@ -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();
}