ram: Check for theoretical division by zero
This commit is contained in:
parent
fa7c266e2b
commit
ab4f24a612
|
@ -36,6 +36,10 @@
|
|||
return NULL;
|
||||
}
|
||||
|
||||
if (total == 0) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
return bprintf("%d", 100 * ((total - free) -
|
||||
(buffers + cached)) / total);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue