We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 402a8ab commit 22e48cdCopy full SHA for 22e48cd
src/node-opus.cc
@@ -44,6 +44,7 @@ Object OpusEncoder::Init(Napi::Env env, Object exports) {
44
OpusEncoder::OpusEncoder(const CallbackInfo& args): ObjectWrap<OpusEncoder>(args) {
45
this->encoder = nullptr;
46
this->decoder = nullptr;
47
+ this->outPcm = nullptr;
48
49
if (args.Length() < 2) {
50
Napi::RangeError::New(args.Env(), "Expected 2 arguments").ThrowAsJavaScriptException();
@@ -68,7 +69,7 @@ OpusEncoder::~OpusEncoder() {
68
69
70
71
- delete this->outPcm;
72
+ if (this->outPcm) delete this->outPcm;
73
this->outPcm = nullptr;
74
}
75
0 commit comments