We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d029fa0 + 12e4458 commit a8d88b0Copy full SHA for a8d88b0
1 file changed
Confuser.Core/API/APIStore.cs
@@ -36,7 +36,7 @@ public void AddPredicate(IOpaquePredicateDescriptor predicate) {
36
public IDataStore GetStore(MethodDef method) {
37
for (int i = dataStores.Count - 1; i >= 0; i--) {
38
var list = dataStores[i];
39
- for (int j = list.Count - 1; j >= 0; i--) {
+ for (int j = list.Count - 1; j >= 0; j--) {
40
if (list[j].IsUsable(method))
41
return list[j];
42
}
0 commit comments