sandbox didn't wrap the io.input/io.output functions, and called fopen directly. The FILE handle was not recognised by the game's built-in replacement io functions, and crashed directly.
I think no one may have noticed that it can be used this way.
Steps to Reproduce
local input = io.input(filename)
input:read(any) --crash
io.read(any) --crash
io.close() --crash
local output = io.output(filename)
output:write(any) --crash
io.write(any) --crash
io.close() --crash
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now