We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
研究了下回调函数绑定部分,pesapi部分的,似乎是强转函数类型的, V8的回调函数类型是void (*)(const FunctionCallbackInfo& info) pesapi接口用的类型是void (*pesapi_callback)(pesapi_callback_info info) pesapi_callback_info 是个指针类型 从参数为指针的函数类型强转为参数为引用的函数类型,调用的时候似乎是个未定义行为,不会有安全性问题么?
The text was updated successfully, but these errors were encountered:
不会
Sorry, something went wrong.
No branches or pull requests
研究了下回调函数绑定部分,pesapi部分的,似乎是强转函数类型的,
V8的回调函数类型是void (*)(const FunctionCallbackInfo& info)
pesapi接口用的类型是void (*pesapi_callback)(pesapi_callback_info info) pesapi_callback_info 是个指针类型
从参数为指针的函数类型强转为参数为引用的函数类型,调用的时候似乎是个未定义行为,不会有安全性问题么?
The text was updated successfully, but these errors were encountered: