Compare commits

...

2 commits

Author SHA1 Message Date
Rodney 5628fe2f0b
Merge 934ff507e5 into 5f98d34e2c 2024-06-20 08:45:24 +02:00
derrod 934ff507e5 UI: Set invalid parameter handler in non-debug builds 2024-06-12 23:05:22 +02:00

View file

@ -2929,6 +2929,15 @@ static bool vc_runtime_outdated()
return true;
}
void obs_invalid_parameter_handler(const wchar_t *, const wchar_t *,
const wchar_t *, unsigned int, uintptr_t)
{
/* In Release builds the parameters are all NULL, but not having a
* handler would result in the program being terminated.
* By having one that does not abort execution we let the caller handle
* the error codes returned by the function that invoked this. */
}
#endif
int main(int argc, char *argv[])
@ -2957,6 +2966,9 @@ int main(int argc, char *argv[])
#endif
#ifdef _WIN32
#ifndef _DEBUG
_set_invalid_parameter_handler(obs_invalid_parameter_handler);
#endif
// Abort as early as possible if MSVC runtime is outdated
if (vc_runtime_outdated())
return 1;