mirror of
https://github.com/libretro/ppsspp.git
synced 2024-12-04 23:16:41 +00:00
http: Don't treat http:// as a relative path.
This commit is contained in:
parent
bf1777f7d3
commit
78571b8e37
@ -136,6 +136,9 @@ static bool ResolvePathVista(const std::wstring &path, wchar_t *buf, DWORD bufSi
|
||||
#endif
|
||||
|
||||
std::string ResolvePath(const std::string &path) {
|
||||
if (startsWith(path, "http://") || startsWith(path, "https://")) {
|
||||
return path;
|
||||
}
|
||||
#ifdef _WIN32
|
||||
static const int BUF_SIZE = 32768;
|
||||
wchar_t *buf = new wchar_t[BUF_SIZE] {};
|
||||
|
@ -43,7 +43,7 @@ std::string ResolveUrl(std::string baseUrl, std::string url) {
|
||||
return baseUrl;
|
||||
} else if (url[0] == '/') {
|
||||
return baseUrl + url.substr(1);
|
||||
} else if (url.substr(0, 7) == "http://") {
|
||||
} else if (startsWith(url, "http://") || startsWith(url, "https://")) {
|
||||
return url;
|
||||
} else {
|
||||
// Huh.
|
||||
|
Loading…
Reference in New Issue
Block a user