diff options
Diffstat (limited to 'src/lib/util/corefile.cpp')
-rw-r--r-- | src/lib/util/corefile.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/util/corefile.cpp b/src/lib/util/corefile.cpp index a2242c133c6..344a2922bfe 100644 --- a/src/lib/util/corefile.cpp +++ b/src/lib/util/corefile.cpp @@ -909,7 +909,7 @@ file_error core_truncate(core_file *f, UINT64 offset) assumptions about path separators -------------------------------------------------*/ -std::string &core_filename_extract_base(std::string &result, const char *name, bool strip_extension) +std::string core_filename_extract_base(const char *name, bool strip_extension) { /* find the start of the name */ const char *start = name + strlen(name); @@ -917,7 +917,7 @@ std::string &core_filename_extract_base(std::string &result, const char *name, b start--; /* copy the rest into an astring */ - result.assign(start); + std::string result(start); /* chop the extension if present */ if (strip_extension) |