safchain / ethtool

A simple ethtool "like" library for GO
Apache License 2.0
120 stars 69 forks source link

Fix garbled statistics names #25

Closed haggaie closed 5 years ago

haggaie commented 5 years ago

Stats are null terminated strings, but output may contain garbage between them. Current code that converts C strings to Go strings doesn't handle these cases, as it only trims zeros at the end of the string.

Fix based on: https://stackoverflow.com/a/12377539

Fixes: #4

Signed-off-by: Haggai Eran haggai.eran@gmail.com