Fix setEnvFromFile()
authorMikhail Aksenov <m.aksenov@samsung.com>
Mon, 21 Oct 2019 12:21:50 +0000 (15:21 +0300)
committer이형주/Common Platform Lab(SR)/Staff Engineer/삼성전자 <leee.lee@samsung.com>
Mon, 21 Oct 2019 22:04:15 +0000 (07:04 +0900)
NativeLauncher/launcher/dotnet/dotnet_launcher.cc

index 58092f7fd9a12d375682c8c5a46ef40e3acf0881..46c56286b865c7fbfcbde94ab8c4802901d2886d 100644 (file)
@@ -103,7 +103,7 @@ static void setEnvFromFile()
 
        if (inFile) {
                _INFO("coreclr_env.list is found");
-               inFile >> envList;
+               std::getline(inFile, envList);
 
                std::istringstream ss(envList);
                std::string token;