Page MenuHomeFreeBSD

Fix memory leaks in dhclient
ClosedPublic

Authored by trix_juniper.net on Mar 5 2017, 2:07 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Mar 16, 11:25 AM
Unknown Object (File)
Fri, Mar 15, 1:37 PM
Unknown Object (File)
Fri, Mar 15, 12:56 PM
Unknown Object (File)
Jan 2 2024, 1:19 PM
Unknown Object (File)
Dec 20 2023, 3:28 AM
Unknown Object (File)
Oct 25 2023, 9:58 AM
Unknown Object (File)
Jul 23 2023, 10:14 PM
Unknown Object (File)
Jul 12 2023, 2:35 AM
Subscribers

Details

Summary

parse.c parse_string
When parse_semi fails, free s before returning

parse.c parse_numeric_aggregate
The memory assigned to bufp is complicated, it can either be from the input parameter buf or allocated locally. Introduce a new variable lbufp to track when it is assigned locally and to free it when appropriate.

Test Plan

Run clang's static analyzer, scan-build, to find the problems, run later to show resolutions.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

trix_juniper.net retitled this revision from to Fix memory leaks in dhclient.
trix_juniper.net updated this object.
trix_juniper.net edited the test plan for this revision. (Show Details)
trix_juniper.net added reviewers: stevek, brooks, jhb.
trix_juniper.net set the repository for this revision to rS FreeBSD src repository - subversion.
jhb edited edge metadata.
This revision is now accepted and ready to land.Mar 6 2017, 5:39 PM
This revision was automatically updated to reflect the committed changes.