Skip to content

Commit a8d88b0

Browse files
authored
Merge pull request #4 from jvitkauskas/master
fix for loop variable
2 parents d029fa0 + 12e4458 commit a8d88b0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Confuser.Core/API/APIStore.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public void AddPredicate(IOpaquePredicateDescriptor predicate) {
3636
public IDataStore GetStore(MethodDef method) {
3737
for (int i = dataStores.Count - 1; i >= 0; i--) {
3838
var list = dataStores[i];
39-
for (int j = list.Count - 1; j >= 0; i--) {
39+
for (int j = list.Count - 1; j >= 0; j--) {
4040
if (list[j].IsUsable(method))
4141
return list[j];
4242
}

0 commit comments

Comments
 (0)