We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98a7026 commit e67df04Copy full SHA for e67df04
src/stream_base-inl.h
@@ -4,6 +4,7 @@
4
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
5
6
#include "async_wrap-inl.h"
7
+#include "base_object-inl.h"
8
#include "node.h"
9
#include "stream_base.h"
10
#include "v8.h"
@@ -36,9 +37,10 @@ inline StreamReq* StreamReq::FromObject(v8::Local<v8::Object> req_wrap_obj) {
36
37
}
38
39
inline void StreamReq::Dispose() {
40
+ BaseObjectPtr<AsyncWrap> destroy_me{GetAsyncWrap()};
41
object()->SetAlignedPointerInInternalField(
42
StreamReq::kStreamReqField, nullptr);
- delete this;
43
+ destroy_me->Detach();
44
45
46
inline v8::Local<v8::Object> StreamReq::object() {
0 commit comments