Page MenuHomeFreeBSD

ping: increase buffer size for the string representation of n_time
ClosedPublic

Authored by jansucan on Aug 19 2019, 4:59 PM.
Tags
None
Referenced Files
F149379027: D21325.id61002.diff
Tue, Mar 24, 1:59 AM
F149339909: D21325.id61006.diff
Mon, Mar 23, 8:57 PM
Unknown Object (File)
Wed, Mar 18, 2:43 AM
Unknown Object (File)
Tue, Mar 17, 11:40 PM
Unknown Object (File)
Tue, Mar 17, 1:55 AM
Unknown Object (File)
Tue, Mar 17, 1:55 AM
Unknown Object (File)
Sun, Mar 15, 12:40 PM
Unknown Object (File)
Fri, Mar 6, 6:40 AM
Subscribers

Details

Summary

Increase buffer size for the string representation of n_time

This fixes -Wformat-truncation warning when compiled with GCC.

ICMP timestamp is a 32-bit number. In pr_ntime(), number of minutes
and seconds is always 2 characters wide. Max. number of hours is 4
characters wide. The buffer size should be at least:

4 + 2 + 2 + 1 (':') + 1 (':') + 1 ('\0') = 11

Submitted by: Ján Sučan <sucanjan@gmail.com>
Sponsored by: Google, inc. (Google Summer of Code 2019)

Diff Detail

Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 25961
Build 24519: arc lint + arc unit