Page MenuHomeFreeBSD

wtap: remove unused variable and bzero
ClosedPublic

Authored by enweiwu on Jun 28 2022, 9:09 AM.
Referenced Files
Unknown Object (File)
Mon, Apr 22, 7:40 AM
Unknown Object (File)
Thu, Apr 18, 2:29 PM
Unknown Object (File)
Tue, Apr 16, 10:53 AM
Unknown Object (File)
Feb 2 2024, 6:10 AM
Unknown Object (File)
Feb 2 2024, 6:09 AM
Unknown Object (File)
Feb 2 2024, 6:09 AM
Unknown Object (File)
Jan 31 2024, 1:34 AM
Unknown Object (File)
Dec 10 2023, 2:32 PM
Subscribers

Details

Summary

bzero is not necessary because the flag M_ZERO is ORed and passed into malloc().

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

This revision is now accepted and ready to land.Jun 28 2022, 4:30 PM

Probably the commit message can be more precise. For example:

Remove store only variable and unnecessary bzero()

- Remove the variable set but not used to fix build on -CURRENT
- Remove bzero() on the space malloc'd with M_ZERO flag.

@rickywu0421_gmail.com: is this message correct?

Probably the commit message can be more precise. For example:

Remove store only variable and unnecessary bzero()

- Remove the variable set but not used to fix build on -CURRENT
- Remove bzero() on the space malloc'd with M_ZERO flag.

@rickywu0421_gmail.com: is this message correct?

Yes, correct. I think "store only" may be "store-only".