diff options
| -rw-r--r-- | psutil/_psutil_mswindows.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/psutil/_psutil_mswindows.c b/psutil/_psutil_mswindows.c index a30564a1..e2af88a8 100644 --- a/psutil/_psutil_mswindows.c +++ b/psutil/_psutil_mswindows.c @@ -495,7 +495,7 @@ get_process_exe(PyObject* self, PyObject* args) { return NULL; } - hProcess = handle_from_pid_waccess(pid, PROCESS_QUERY_LIMITED_INFORMATION); + hProcess = handle_from_pid_waccess(pid, PROCESS_QUERY_INFORMATION); if (NULL == hProcess) { return NULL; } |
