Skip to content

Commit

Permalink
Fix issue #462 where PropertyCallbackInfo data is not stored safely.
Browse files Browse the repository at this point in the history
  • Loading branch information
jjrv authored and kkoopa committed Oct 7, 2015
1 parent 3a4a0ae commit 55f50ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nan_callbacks_pre_12_inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ class FunctionCallbackInfo {
template<typename T>
class PropertyCallbackInfoBase {
const v8::AccessorInfo &info_;
const v8::Local<v8::Value> &data_;
const v8::Local<v8::Value> data_;

public:
explicit inline PropertyCallbackInfoBase(
Expand Down

0 comments on commit 55f50ad

Please sign in to comment.