Skip to content

Commit 12e4458

Browse files
committed
fix for loop variable
1 parent 3c9c29d commit 12e4458

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)