aboutsummaryrefslogtreecommitdiff
path: root/pattern.c
diff options
context:
space:
mode:
Diffstat (limited to 'pattern.c')
-rw-r--r--pattern.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/pattern.c b/pattern.c
index d597127..ca71fba 100644
--- a/pattern.c
+++ b/pattern.c
@@ -322,16 +322,16 @@ int compute_rowdata(int *ret, unsigned char *start, int len, int step)
n = 0;
for (i = 0; i < len; i++) {
- if (start[i*step] == GRID_UNKNOWN)
- return -1;
-
if (start[i*step] == GRID_FULL) {
int runlen = 1;
- while (i+runlen < len && start[(i+runlen)*step])
+ while (i+runlen < len && start[(i+runlen)*step] == GRID_FULL)
runlen++;
ret[n++] = runlen;
i += runlen;
}
+
+ if (start[i*step] == GRID_UNKNOWN)
+ return -1;
}
return n;