Bug 640113 - Unchecked return value in AudioParent::RecvShutdown; r=kinetik

This commit is contained in:
Ms2ger 2011-03-31 15:38:30 -04:00
parent 41f6aee99f
commit 3bab967c93

View File

@ -38,6 +38,7 @@
* ***** END LICENSE BLOCK ***** */
#include "mozilla/dom/AudioParent.h"
#include "mozilla/unused.h"
#include "nsThreadUtils.h"
// C++ file contents
@ -222,7 +223,7 @@ bool
AudioParent::RecvShutdown()
{
Shutdown();
PAudioParent::Send__delete__(this);
unused << PAudioParent::Send__delete__(this);
return true;
}