Fix 65f65ad2: Missing path separator that fell over a cliff.

pull/217/head
Michael Lutz 3 years ago committed by GitHub
parent dc5b8020cc
commit 4f8e7b2a2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -219,7 +219,7 @@ static std::string FiosMakeFilename(const std::string *path, const char *name, c
const char *period = strrchr(name, '.');
if (period != nullptr && strcasecmp(period, ext) == 0) ext = "";
return buf + name + ext;
return buf + PATHSEP + name + ext;
}
/**

Loading…
Cancel
Save