This commit is contained in:
einstein95 2018-07-29 20:02:31 +12:00
parent 919e7b4387
commit aeceecea3d
2 changed files with 2 additions and 2 deletions

View File

@ -266,7 +266,7 @@ int AsmFile::ReadString(unsigned char* s)
{ {
m_pos += stringParser.ParseString(m_pos, s, length); m_pos += stringParser.ParseString(m_pos, s, length);
} }
catch (std::runtime_error e) catch (std::runtime_error& e)
{ {
RaiseError(e.what()); RaiseError(e.what());
} }

View File

@ -206,7 +206,7 @@ void CFile::TryConvertString()
{ {
m_pos += stringParser.ParseString(m_pos, s, length); m_pos += stringParser.ParseString(m_pos, s, length);
} }
catch (std::runtime_error e) catch (std::runtime_error& e)
{ {
RaiseError(e.what()); RaiseError(e.what());
} }