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
In get_lmbs() there's a code path for the case where stat(DYNAMIC_RECONFIG_MEM, &sbuf) fails. In that case, there's this code:
get_lmbs()
stat(DYNAMIC_RECONFIG_MEM, &sbuf)
if (stat(DYNAMIC_RECONFIG_MEM, &sbuf)) { struct dr_connector *drc_list, *drc; drc_list = get_drc_info(OFDT_BASE);
drc_list is never freed in this code.
drc_list
I don't know if this is ever seen in practice. Given drmgr is typically a short-lived process, this may be a low priority to fix.
drmgr
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In
get_lmbs()
there's a code path for the case wherestat(DYNAMIC_RECONFIG_MEM, &sbuf)
fails. In that case, there's this code:drc_list
is never freed in this code.I don't know if this is ever seen in practice. Given
drmgr
is typically a short-lived process, this may be a low priority to fix.The text was updated successfully, but these errors were encountered: