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
When using ISO-TP context buffers (CONFIG_ISOTP_ENABLE_CONTEXT_BUFFERS) the send context (struct isotp_send_ctx) is allocated from a memory slab.
CONFIG_ISOTP_ENABLE_CONTEXT_BUFFERS
struct isotp_send_ctx
During the send() function if either attach_fc_filter() or send_sf() return an error then the context buffer is not free'd, causing a memory leak
send()
attach_fc_filter()
send_sf()
The text was updated successfully, but these errors were encountered:
henrikbrixandersen
Successfully merging a pull request may close this issue.
When using ISO-TP context buffers (
CONFIG_ISOTP_ENABLE_CONTEXT_BUFFERS
) the send context (struct isotp_send_ctx
) is allocated from a memory slab.During the
send()
function if eitherattach_fc_filter()
orsend_sf()
return an error then the context buffer is not free'd, causing a memory leakThe text was updated successfully, but these errors were encountered: