Skip to content

Commit

Permalink
hack: avoid assert
Browse files Browse the repository at this point in the history
  • Loading branch information
popcornmix authored and johnrvt committed Dec 29, 2020
1 parent 8b3a700 commit 7d43dbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/filesystem/SpecialProtocol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,6 @@ std::string CSpecialProtocol::GetPath(const std::string &key)
std::map<std::string, std::string>::iterator it = m_pathMap.find(key);
if (it != m_pathMap.end())
return it->second;
assert(false);
//assert(false);
return "";
}

0 comments on commit 7d43dbe

Please sign in to comment.