Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fully fix that clear bug in aldlist.cpp. Seems I missed part. Correct…
…ed it.
  • Loading branch information
lioncash committed Jan 19, 2013
1 parent 5ff77f9 commit c4bd632
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/AudioCommon/Src/aldlist.cpp
Expand Up @@ -146,7 +146,7 @@ ALDeviceList::~ALDeviceList()
{
for (u32 i = 0; i < vDeviceInfo.size(); i++) {
if (vDeviceInfo[i].pvstrExtensions) {
vDeviceInfo[i].pvstrExtensions->empty();
vDeviceInfo[i].pvstrExtensions->clear();
delete vDeviceInfo[i].pvstrExtensions;
}
}
Expand Down

0 comments on commit c4bd632

Please sign in to comment.