mirror of https://github.com/xzeldon/htop.git
Increase print buffer in NetworkIOMeter_display
In case the packet values wrap-around or have other weird values, the current buffer might be to small
This commit is contained in:
parent
8a08a3209c
commit
45a22080c9
|
@ -63,7 +63,7 @@ static void NetworkIOMeter_updateValues(ATTR_UNUSED Meter* this, char* buffer, i
|
||||||
}
|
}
|
||||||
|
|
||||||
static void NetworkIOMeter_display(ATTR_UNUSED const Object* cast, RichString* out) {
|
static void NetworkIOMeter_display(ATTR_UNUSED const Object* cast, RichString* out) {
|
||||||
char buffer[32];
|
char buffer[64];
|
||||||
|
|
||||||
RichString_write(out, CRT_colors[METER_TEXT], "rx: ");
|
RichString_write(out, CRT_colors[METER_TEXT], "rx: ");
|
||||||
Meter_humanUnit(buffer, cached_rxb_diff, sizeof(buffer));
|
Meter_humanUnit(buffer, cached_rxb_diff, sizeof(buffer));
|
||||||
|
|
Loading…
Reference in New Issue