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
I found a memory leak in registry_probe.c.
A temporary variable tmp is leaking in following codes To fix this issue, append SEXP_free(tmp); after L477.
tmp
SEXP_free(tmp);
openscap/src/OVAL/probes/windows/registry_probe.c
Lines 473 to 481 in 7787544
The text was updated successfully, but these errors were encountered:
@mazkasa Hello, are you planning to propose a PR with a fix?
Sorry, something went wrong.
@matusmarhefka Hello, I'll try it.
Fix OpenSCAP#1269
165206f
Memory leaks in registry_probe.c
Fixed in #1276
No branches or pull requests
I found a memory leak in registry_probe.c.
A temporary variable
tmp
is leaking in following codesTo fix this issue, append
SEXP_free(tmp);
after L477.openscap/src/OVAL/probes/windows/registry_probe.c
Lines 473 to 481 in 7787544
The text was updated successfully, but these errors were encountered: