Explorar el Código

don't allow the use of perc if uninitialized

raiz hace 9 años
padre
commit
11fec4fa95
Se han modificado 1 ficheros con 4 adiciones y 4 borrados
  1. 4 4
      slstatus.c

+ 4 - 4
slstatus.c

@@ -699,11 +699,11 @@ wifi_perc(const char *iface)
 	fgets(buf, sizeof(buf), fp);
 	fgets(buf, sizeof(buf), fp);
 	fclose(fp);
 	fclose(fp);
 
 
-	datastart = strstr(buf, concat);
-	if (datastart != NULL) {
-		datastart = strstr(buf, ":");
-		sscanf(datastart + 1, " %*d   %d  %*d  %*d		  %*d	   %*d		%*d		 %*d	  %*d		 %*d", &perc);
+	if ((datastart = strstr(buf, concat)) == NULL) {
+		return smprintf("%s", UNKNOWN_STR);
 	}
 	}
+	datastart = (datastart+(strlen(iface)+1));
+	sscanf(datastart + 1, " %*d   %d  %*d  %*d		  %*d	   %*d		%*d		 %*d	  %*d		 %*d", &perc);
 
 
 	return smprintf("%d%%", perc);
 	return smprintf("%d%%", perc);
 }
 }