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
Unknown Object (File)
Jan 16 2024, 9:08 AM
Unknown Object (File)
Dec 21 2023, 4:08 PM
Unknown Object (File)
Dec 21 2023, 2:23 PM
Unknown Object (File)
Dec 20 2023, 1:52 AM
Unknown Object (File)
Nov 26 2023, 3:18 AM
Unknown Object (File)
Nov 17 2023, 8:40 PM
Unknown Object (File)
Oct 27 2023, 8:13 PM
Unknown Object (File)
Sep 25 2023, 10:06 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

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