Skip to content

Commit 0744cea

Browse files
committed
predicate.py: Fix reference error that prevented temp file deletion
1 parent ddb680b commit 0744cea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csmith-fuzzing/predicate.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def main():
144144
exit_code = 2
145145
print("Unexpected exception:", e)
146146

147-
for p in TEMP_FILES:
147+
for path in TEMP_FILES:
148148
try:
149149
os.remove(path)
150150
except:

0 commit comments

Comments
 (0)