Skip to content

Commit

Permalink
Fix CFileSystem::FileSystemType related UB (#15669)
Browse files Browse the repository at this point in the history
  • Loading branch information
cosin15 authored Jan 11, 2025
1 parent e5542e5 commit 37899f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion irr/src/CFileSystem.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class CFileSystem final : public IFileSystem

private:
//! Currently used FileSystemType
EFileSystemType FileSystemType;
EFileSystemType FileSystemType = FILESYSTEM_NATIVE;
//! WorkingDirectory for Native and Virtual filesystems
io::path WorkingDirectory[2];
//! currently attached ArchiveLoaders
Expand Down

0 comments on commit 37899f7

Please sign in to comment.