ram: Check for theoretical division by zero

master
Aaron Marcher 8 years ago
parent fa7c266e2b
commit ab4f24a612

@ -36,6 +36,10 @@
return NULL; return NULL;
} }
if (total == 0) {
return NULL;
}
return bprintf("%d", 100 * ((total - free) - return bprintf("%d", 100 * ((total - free) -
(buffers + cached)) / total); (buffers + cached)) / total);
} }

Loading…
Cancel
Save