Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix a free that should have been a delete.
  • Loading branch information
lioncash committed Jun 18, 2013
1 parent 7df8a9c commit d78f009
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/Src/HW/WiimoteReal/IOWin.cpp
Expand Up @@ -232,7 +232,7 @@ void WiimoteScanner::FindWiimotes(std::vector<Wiimote*> & found_wiimotes, Wiimot
}
else
{
free(wm);
delete wm;
}
}

Expand Down

0 comments on commit d78f009

Please sign in to comment.