fully fix potential bug with count based collocation window

Change-Id: Ie9e19c3cd2afaf9e48f7ce0dc69decbc1850e84b
diff --git a/src/dereko2vec.c b/src/dereko2vec.c
index 0bc021c..767956a 100644
--- a/src/dereko2vec.c
+++ b/src/dereko2vec.c
@@ -1685,7 +1685,7 @@
 					}
 			}
 		} else if(type == 5) {
-			for (a = 0; a < window * 2 + 1 - b; a++) if (a != window) {
+			for (a = 0; a < window * 2 + 1; a++) if (a != window) {
 				c = sentence_position - window + a;
 				if (c < 0) continue;
 				if (c >= sentence_length) continue;