From 54ebe1fe2309552d03a661b9dd56877e12558a1e Mon Sep 17 00:00:00 2001 From: Nikolai Lifanov Date: Wed, 6 Jul 2016 10:20:46 -0400 Subject: [PATCH] fix get_path_exe: not sure what I was thinking --- src/shared.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/shared.c b/src/shared.c index 5033dae..5372561 100644 --- a/src/shared.c +++ b/src/shared.c @@ -4386,9 +4386,12 @@ char *get_exec_path () mib[2] = KERN_PROC_PATHNAME; mib[3] = -1; - size_t size = sizeof(exec_path); + char tmp[32] = { 0 }; + + size_t size = exec_path_len; + sysctl(mib, 4, exec_path, &size, NULL, 0); - const int len = sysctl(mib, 4, exec_path, &size, NULL, 0); + const int len = readlink (tmp, exec_path, exec_path_len - 1); #else #error Your Operating System is not supported or detected -- 2.25.1