Amjad50 / plastic

NES emulator in rust with egui and TUI
MIT License
299 stars 12 forks source link

Potential File System Inconsistencies #16

Open silverhadch opened 1 day ago

silverhadch commented 1 day ago

The code doesn't handle the case where the save state directory or files might be deleted or corrupted between get_present_save_states and file operations. If a file disappears between these calls, it could cause unexpected panics when trying to open non-existent files.

Add more robust file existence checks right before performing file operations.