Debugged a deadlock in the fuzzing plugin and found out that a the lua function loadfile has a problem with nil value.
Smaller code:
Edit: Also occurs on lua 5.3
Smaller code:
print("loading...")
loadfile(nil) -- DEADLOCK
print("loaded")
Edit: Also occurs on lua 5.3

