Skip to content

Commit 22e48cd

Browse files
committed
chore: fix destructor
1 parent 402a8ab commit 22e48cd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/node-opus.cc

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ Object OpusEncoder::Init(Napi::Env env, Object exports) {
4444
OpusEncoder::OpusEncoder(const CallbackInfo& args): ObjectWrap<OpusEncoder>(args) {
4545
this->encoder = nullptr;
4646
this->decoder = nullptr;
47+
this->outPcm = nullptr;
4748

4849
if (args.Length() < 2) {
4950
Napi::RangeError::New(args.Env(), "Expected 2 arguments").ThrowAsJavaScriptException();
@@ -68,7 +69,7 @@ OpusEncoder::~OpusEncoder() {
6869
this->encoder = nullptr;
6970
this->decoder = nullptr;
7071

71-
delete this->outPcm;
72+
if (this->outPcm) delete this->outPcm;
7273
this->outPcm = nullptr;
7374
}
7475

0 commit comments

Comments
 (0)