From 71ed40b0d9162a74d4b8596b2d671795adec7e3b Mon Sep 17 00:00:00 2001 From: Ronan Abhamon Date: Thu, 24 May 2018 13:42:14 +0200 Subject: [PATCH] fix(PathsWindows): append linphone to path --- src/core/paths/paths-windows.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/paths/paths-windows.cpp b/src/core/paths/paths-windows.cpp index d0b95a7f7..65b6ba26c 100644 --- a/src/core/paths/paths-windows.cpp +++ b/src/core/paths/paths-windows.cpp @@ -44,7 +44,7 @@ static string getPath (const GUID &id) { CoTaskMemFree(path); } - return strPath; + return strPath.append("/linphone/"); }