Page MenuHomeFreeBSD

Fix a memory leak in newfs_msdos
Needs ReviewPublic

Authored by trix_juniper.net on Feb 20 2017, 4:36 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Jun 30, 7:50 PM
Unknown Object (File)
Wed, Jun 25, 2:50 PM
Unknown Object (File)
Wed, Jun 25, 1:54 PM
Unknown Object (File)
Sun, Jun 22, 11:25 AM
Unknown Object (File)
Sun, Jun 22, 10:25 AM
Unknown Object (File)
Sat, Jun 21, 8:33 PM
Unknown Object (File)
Fri, Jun 20, 1:08 PM
Unknown Object (File)
Fri, Jun 20, 11:45 AM
Subscribers
None

Details

Reviewers
imp
stevek
Summary

When the input file is not a path, memory is allocated and reassigned to the variable 'fname' and never freed.

Track this use case with the new variable 'local_fname' and free the memory after its use. The fname qualify 'const' is removed because the variable really isn't const and scan-build complains of use of const with free. The variable 'ret' introduced to hold the return status of mkfs_msdos() so fname could be freed.

Test Plan

Run clang's static analyzer, scan-build, before to reproduce the problem; run scan-build after to show problem is resolved.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

trix_juniper.net retitled this revision from to Fix a memory leak in newfs_msdos.
trix_juniper.net updated this object.
trix_juniper.net edited the test plan for this revision. (Show Details)
trix_juniper.net added reviewers: stevek, imp.
trix_juniper.net set the repository for this revision to rS FreeBSD src repository - subversion.