Skip to content

Commit a02fcb9

Browse files
authored
Merge pull request #260 from descear/master
Fix infinite loop in iteration of memory mapping lines
2 parents 8dc64c8 + b6c17dc commit a02fcb9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

NativeCore/Unix/EnumerateRemoteSectionsAndModules.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,12 @@ extern "C" void RC_CallConv EnumerateRemoteSectionsAndModules(RC_Pointer handle,
5252

5353
auto path = std::stringstream();
5454
path << "/proc/" << reinterpret_cast<intptr_t>(handle) << "/maps";
55+
std::ifstream input(path.str());
5556

5657
std::unordered_map<int, ModuleInfo> modules;
5758

5859
std::string line;
59-
while (std::getline(std::ifstream(path.str()), line))
60+
while (std::getline(input, line))
6061
{
6162
std::stringstream ss(line);
6263

0 commit comments

Comments
 (0)