From 5310d6d2ea0233f745aa6fc9884930f7d30d4fee Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Sun, 23 Mar 2014 22:29:30 -0500 Subject: Fix a crash that got recently introduced. When CFileSystemGCWii::GetFileName can't find a valid filename it would return nullptr. nullptr as a std::string throws an assert within the std lib. So return an empty string and check if it is empty or not --- Source/Core/DiscIO/FileMonitor.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Source/Core/DiscIO/FileMonitor.cpp') diff --git a/Source/Core/DiscIO/FileMonitor.cpp b/Source/Core/DiscIO/FileMonitor.cpp index d99bd14cd8..4743e7c1af 100644 --- a/Source/Core/DiscIO/FileMonitor.cpp +++ b/Source/Core/DiscIO/FileMonitor.cpp @@ -143,6 +143,9 @@ void FindFilename(u64 offset) } const std::string filename = pFileSystem->GetFileName(offset); + + if (filename.empty()) + return; CheckFile(filename, pFileSystem->GetFileSize(filename)); } -- cgit v1.2.3