Remove another gnc_pop_locale().

This commit is contained in:
John Ralls
2018-04-14 13:11:23 -07:00
parent a04fd573ef
commit 4ba77f7b09

View File

@@ -147,7 +147,6 @@ GncDbiSqlResult::IteratorImpl::get_string_at_col(const char* col) const
auto strval = dbi_result_get_string(m_inst->m_dbi_result, col); auto strval = dbi_result_get_string(m_inst->m_dbi_result, col);
if (strval == nullptr) if (strval == nullptr)
{ {
gnc_pop_locale (LC_NUMERIC);
throw (std::invalid_argument{"Column empty."}); throw (std::invalid_argument{"Column empty."});
} }
auto retval = std::string{strval}; auto retval = std::string{strval};