summaryrefslogtreecommitdiff
path: root/src/report.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/report.cc')
-rw-r--r--src/report.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/report.cc b/src/report.cc
index 4b240611..2ce70151 100644
--- a/src/report.cc
+++ b/src/report.cc
@@ -631,7 +631,7 @@ value_t report_t::fn_trim(call_scope_t& args)
while (*p && std::isspace(*p))
p++;
- const char * e = buf.get() + temp.length();
+ const char * e = buf.get() + temp.length() - 1;
while (e > p && std::isspace(*e))
e--;
@@ -643,7 +643,7 @@ value_t report_t::fn_trim(call_scope_t& args)
return string_value(empty_string);
}
else {
- return string_value(string(p, static_cast<std::string::size_type>(e - p)));
+ return string_value(string(p, static_cast<std::string::size_type>(e - p + 1)));
}
}