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)
Nov 18 2024, 2:28 PM
Unknown Object (File)
Nov 16 2024, 8:29 AM
Unknown Object (File)
Nov 9 2024, 8:05 AM
Unknown Object (File)
Nov 1 2024, 6:48 AM
Unknown Object (File)
Oct 31 2024, 6:15 PM
Unknown Object (File)
Oct 2 2024, 7:45 PM
Unknown Object (File)
Oct 2 2024, 11:17 AM
Unknown Object (File)
Sep 25 2024, 6:21 PM
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.