ephraim / node-fprint

This nodejs node is a wrapper around the libfprint library.
MIT License
31 stars 16 forks source link

Update to enroll.cpp/identify.cpp/verify.cpp to make fprint work on Raspbian Jessie with Node Js 4.4.3 #2

Closed mctrp closed 8 years ago

mctrp commented 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.

Cheers,

Marcel

ephraim commented 8 years ago

Thanks for your research!