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
iotkit-embedded 3e60c94 (HEAD, origin/v3.1.0) [dev_model] change data type of alink msgid to int
In both the functions below, the wrapper_http_deinit(...) call must fix to wrapper_http_deinit(&http_handle):
wrapper_http_deinit(...)
wrapper_http_deinit(&http_handle)
src/http/iotx_http_api.c:
int IOT_HTTP_SendMessage(void *handle, iotx_http_message_param_t *msg_param) { ...... do_exit_pre: if (http_handle) { wrapper_http_deinit(http_handle); http_handle = NULL; } ......
int IOT_HTTP_DeviceNameAuth(void *handle) { ...... do_exit_pre: if (http_handle) { wrapper_http_deinit(http_handle); http_handle = NULL; } ......
The text was updated successfully, but these errors were encountered:
No branches or pull requests
iotkit-embedded
3e60c94 (HEAD, origin/v3.1.0) [dev_model] change data type of alink msgid to int
In both the functions below, the
wrapper_http_deinit(...)
call must fix towrapper_http_deinit(&http_handle)
:src/http/iotx_http_api.c:
The text was updated successfully, but these errors were encountered: