The call to GetFullPathNameW() in src\mfx_dispatcher_vpl_loader.cpp only checks if the return value is 0. But if the path is too big for the string buffer it may return the number of needed (wide) characters. In that case the string it fills is truncated.
The call to
GetFullPathNameW()insrc\mfx_dispatcher_vpl_loader.cpponly checks if the return value is 0. But if the path is too big for the string buffer it may return the number of needed (wide) characters. In that case the string it fills is truncated.