Merge pull request #9288 from asavah/fix-double-free

fix double free()
This commit is contained in:
Twinaphex 2019-08-13 02:47:08 +02:00 committed by GitHub
commit 1772233e9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -171,7 +171,6 @@ static void autosave_thread(void *data)
filestream_write(file, save->buffer, save->bufsize);
filestream_flush(file);
filestream_close(file);
free(file);
}
}