Browse Source

Return ok in tolines when it doesn't match inprocess message for bflsc.

Con Kolivas 12 years ago
parent
commit
2061e97c0f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      driver-bflsc.c

+ 1 - 1
driver-bflsc.c

@@ -106,9 +106,9 @@ static bool tolines(struct cgpu_info *bflsc, int dev, char *buf, int *lines, cha
 		return ok;
 		return ok;
 	}
 	}
 
 
-	ok = true;
 	while (tok) {
 	while (tok) {
 		if (strncasecmp(tok, BFLSC_INPROCESS, BFLSC_INPROCESS_LEN)) {
 		if (strncasecmp(tok, BFLSC_INPROCESS, BFLSC_INPROCESS_LEN)) {
+			ok = true;
 			p_items = realloc(p_items, ++p_lines * sizeof(*p_items));
 			p_items = realloc(p_items, ++p_lines * sizeof(*p_items));
 			if (unlikely(!p_items))
 			if (unlikely(!p_items))
 				quit(1, "Failed to realloc p_items in tolines");
 				quit(1, "Failed to realloc p_items in tolines");