diff options
| author | Glenn Rice <glennricster@gmail.com> | 2010-07-03 16:47:49 +0000 |
|---|---|---|
| committer | Glenn Rice <glennricster@gmail.com> | 2010-07-03 16:47:49 +0000 |
| commit | e34a8baa82a41bf3926b700b87ad8f65aa15a76a (patch) | |
| tree | 8da7681946f8df57c6fa939604152adaf271e4ef /Source/Core/Common/Src/DynamicLibrary.cpp | |
| parent | 2ed8a4331efc61c0cd2e3228e8e125a417d16400 (diff) | |
Fix a segmentation fault when attempting to load an invalid plugin.
Removed an erroneous fprintf.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5828 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/Common/Src/DynamicLibrary.cpp')
| -rw-r--r-- | Source/Core/Common/Src/DynamicLibrary.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/Core/Common/Src/DynamicLibrary.cpp b/Source/Core/Common/Src/DynamicLibrary.cpp index 3ca0b58f8f..95ec340e71 100644 --- a/Source/Core/Common/Src/DynamicLibrary.cpp +++ b/Source/Core/Common/Src/DynamicLibrary.cpp @@ -85,8 +85,6 @@ int DynamicLibrary::Load(const char* filename) DEBUG_LOG(COMMON, "DL: LoadLibrary: %s(%p)", filename, library); if (!library) { - fprintf(stderr, "DL: Error loading DLL %s: %s", filename, - DllGetLastError()); ERROR_LOG(COMMON, "DL: Error loading DLL %s: %s", filename, DllGetLastError()); return 0; |
