Don't return pointer to local variable

This commit is contained in:
Ted John 2016-12-13 21:48:27 +00:00
parent fe9dd6b7a8
commit 1935f79507
1 changed files with 5 additions and 1 deletions

View File

@ -176,7 +176,11 @@ public:
item->Path = std::string(newPath);
SortItems();
result = newPath;
item = GetTrackItem(newPath);
if (item != nullptr)
{
result = item->Path.c_str();
}
}
}
}