# HG changeset patch # User Paper # Date 1699832318 18000 # Node ID 8e9b71970bda6d5fd7fa09d04ea459f416f3b083 # Parent e6668085e24d75a3573ce636ae82353c0252f451 linux: fix stupid bug caused by... me? diff -r e6668085e24d -r 8e9b71970bda dep/animia/src/fd/linux.cc --- a/dep/animia/src/fd/linux.cc Sun Nov 12 18:35:49 2023 -0500 +++ b/dep/animia/src/fd/linux.cc Sun Nov 12 18:38:38 2023 -0500 @@ -117,7 +117,6 @@ bool LinuxFdTools::GetProcessName(pid_t pid, std::string& result) { const std::string path = PROC_LOCATION "/" + std::to_string(pid) + "/comm"; - std::string result; if (!util::ReadFile(path, result)) return false;