Skip to content

Commit e152bd3

Browse files
committed
quic: Fix assertation 2
1 parent 25d3f78 commit e152bd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node_blob.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ void Blob::Reader::Pull(const FunctionCallbackInfo<Value>& args) {
433433
impl->dones.end(),
434434
[](bob::Done& done) { std::move(done)(0); });
435435
impl->dones.clear();
436-
assert(!impl->reader);
436+
assert(impl->reader);
437437
Local<Value> argv[2] = {Uint32::New(env->isolate(), bob::STATUS_CONTINUE),
438438
ArrayBuffer::New(env->isolate(), store)};
439439
impl->reader->MakeCallback(fn, arraysize(argv), argv);

0 commit comments

Comments
 (0)