mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 640113 - Unchecked return value in AudioParent::RecvShutdown; r=kinetik
This commit is contained in:
parent
41f6aee99f
commit
3bab967c93
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user