mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-25 19:30:53 +00:00
d78adf7e99
RD uses getprop to emulate geting env vars configured from the host, and it uses Process::LaunchProcess to do this that in turn uses fork/execve to launch getprop. But execve doesn't use the env's shell lookup mechanism for exes - this resulted in the getprop call failing and the capture options using default values. This fix is to switch to using execvpe.