CHecked in the wrong version of my patch for 71143. This is the one attached to the bug.

This commit is contained in:
hyatt%netscape.com 2001-08-30 01:27:37 +00:00
Родитель f3dfd545fc
Коммит 0f94a7564d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -84,7 +84,7 @@ nsSound::~nsSound()
void nsSound::PurgeLastSound() {
if (mLastSound) {
// Purge the current sound buffer.
::PlaySound(mLastSound, NULL, SND_PURGE); // This call halts the sound if it was still playing.
::PlaySound(NULL, NULL, SND_PURGE); // This call halts the sound if it was still playing.
// Now delete the buffer.
free(mLastSound);