Page MenuHomeFreeBSD

[malloc] quieten -Werror=missing-braces with malloc.h wth gcc-6.4
ClosedPublic

Authored by adrian on Nov 11 2020, 10:45 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, May 12, 8:07 AM
Unknown Object (File)
Wed, May 6, 4:19 AM
Unknown Object (File)
Tue, Apr 28, 11:31 AM
Unknown Object (File)
Tue, Apr 28, 7:22 AM
Unknown Object (File)
Mon, Apr 27, 9:37 PM
Unknown Object (File)
Mon, Apr 27, 2:42 PM
Unknown Object (File)
Mon, Apr 27, 9:20 AM
Unknown Object (File)
Mon, Apr 27, 9:20 AM
Subscribers

Details

Summary

This sets off gcc-6.4 to spit out a 'error: missing braces around initializer'
error when compiling this. Adding a second set of braces around the 0
sub-struct initializer fixes things.

Test Plan
  • compiled for gcc-6.4

Diff Detail

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

Event Timeline

brooks added inline comments.
sys/sys/malloc.h
150 ↗(On Diff #79446)

Just drop the initialization. Designated initializers zero all members not mentioned.

update based on comment from brooks@

This revision is now accepted and ready to land.Nov 13 2020, 12:45 AM