master
Chris Punches 2025-02-23 20:34:00 -05:00
parent d320abf1ca
commit 599f215693
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ DPMError ModuleLoader::get_module_description(void* module_handle, std::string&
// Clear any previous error state and handle any residual failure // Clear any previous error state and handle any residual failure
const char* pre_error = dlerror(); const char* pre_error = dlerror();
if ( pre_error != nullptr ) { if ( pre_error != nullptr ) {
version = pre_error; description = pre_error;
return DPMError::UNDEFINED_ERROR; return DPMError::UNDEFINED_ERROR;
} }