Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
RomInfo constructor was being called with an empty string where it ca…
…lled for a boolean. Coverity defect 703726
  • Loading branch information
stuartm committed Jun 4, 2012
1 parent dfb717c commit 7493e12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythplugins/mythgame/mythgame/gamescan.cpp
Expand Up @@ -115,7 +115,7 @@ void GameScannerThread::updateDB()
if (!(*p).indb)
{
RomInfo add(0, (*p).romfile, (*p).system,
(*p).romname, "", "", "", (*p).rompath,
(*p).romname, "", "", false, (*p).rompath,
"", "", 0, (*p).gametype, 0, "", "", "",
"", "", "", "", "");
add.SaveToDatabase();
Expand Down

0 comments on commit 7493e12

Please sign in to comment.