Fix std::string read after free in read_stream_art

This commit is contained in:
Ryan Walklin 2017-08-17 20:57:59 +10:00
parent 318f80d113
commit 9f16c798d0

View File

@ -266,12 +266,12 @@ find_stream_art(const char *directory, Mutex &mutex, Cond &cond)
static CommandResult static CommandResult
read_stream_art(Response &r, const char *uri, size_t offset) read_stream_art(Response &r, const char *uri, size_t offset)
{ {
const char *art_directory = PathTraitsUTF8::GetParent(uri).c_str(); std::string art_directory = PathTraitsUTF8::GetParent(uri);
Mutex mutex; Mutex mutex;
Cond cond; Cond cond;
InputStreamPtr is = find_stream_art(art_directory, mutex, cond); InputStreamPtr is = find_stream_art(art_directory.c_str(), mutex, cond);
if (is == nullptr) { if (is == nullptr) {
r.Error(ACK_ERROR_NO_EXIST, "No file exists"); r.Error(ACK_ERROR_NO_EXIST, "No file exists");