فهرست منبع

swap_perc: check for division by zero on obsd too

Aaron Marcher 7 سال پیش
والد
کامیت
4bd234c7ef
1فایلهای تغییر یافته به همراه4 افزوده شده و 0 حذف شده
  1. 4 0
      components/swap.c

+ 4 - 0
components/swap.c

@@ -188,6 +188,10 @@
 
 		getstats(&total, &used);
 
+		if (total == 0) {
+			return NULL;
+		}
+
 		return bprintf("%d%%", 100 * used / total);
 	}