File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -372,7 +372,7 @@ void Blob::Reader::Pull(const FunctionCallbackInfo<Value>& args) {
372372 const DataQueue::Vec* vecs,
373373 size_t count,
374374 bob::Done doneCb) mutable {
375- assert (! impl->reader );
375+ assert (impl->reader );
376376 Environment* env = impl->env ;
377377 HandleScope handleScope (env->isolate ());
378378 Local<Function> fn = impl->callback .Get (env->isolate ());
@@ -406,7 +406,7 @@ void Blob::Reader::Pull(const FunctionCallbackInfo<Value>& args) {
406406 for (size_t n = 0 ; n < count; n++) impl->byte_count += vecs[n].len ;
407407 }
408408 };
409- assert (! impl->reader );
409+ assert (impl->reader );
410410 status = impl->reader ->inner_ ->Pull (
411411 std::move (snext), node::bob::OPTIONS_SYNC, nullptr , 0 );
412412 }
@@ -440,7 +440,7 @@ void Blob::Reader::Pull(const FunctionCallbackInfo<Value>& args) {
440440 return ;
441441 }
442442 impl->dones .clear (); // should not be necessary?
443- assert (! impl->reader );
443+ assert (impl->reader );
444444
445445 Local<Value> argv[2 ] = {
446446 Int32::New (env->isolate (), status),
You can’t perform that action at this time.
0 commit comments