Closed mctrp closed 8 years ago
Encountered an error while trying to run fprint on a Raspberry Pi 2 running Raspbian Jessie with Node Js 4.4.3.
FATAL ERROR: v8::HandleScope::CreateHandle() Cannot create a handle without a HandleScope
The error disappeared when replacing Nan::HandleScope(); with Nan::HandleScope scope;. Hence the changes in this pull request.
Nan::HandleScope();
Nan::HandleScope scope;
Cheers,
Marcel
Thanks for your research!
Encountered an error while trying to run fprint on a Raspberry Pi 2 running Raspbian Jessie with Node Js 4.4.3.
FATAL ERROR: v8::HandleScope::CreateHandle() Cannot create a handle without a HandleScope
The error disappeared when replacing
Nan::HandleScope();
withNan::HandleScope scope;
. Hence the changes in this pull request.Cheers,
Marcel