From: Julian Andres Klode Date: Thu, 7 Jan 2016 19:23:48 +0000 (+0100) Subject: StringView: rfind: pos should be end of substr, not start X-Git-Tag: 1.2_exp1~27 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/0e58689ae76e8155bc1f418323aa9e56c34187f6?ds=inline StringView: rfind: pos should be end of substr, not start Gbp-Dch: ignore --- diff --git a/apt-pkg/contrib/string_view.h b/apt-pkg/contrib/string_view.h index 3585da45a..37a30a6df 100644 --- a/apt-pkg/contrib/string_view.h +++ b/apt-pkg/contrib/string_view.h @@ -57,7 +57,7 @@ public: size_t rfind(int c, size_t pos=npos) const { if (pos != npos) - return substr(pos).rfind(c); + return substr(0, pos).rfind(c); const char *found = static_cast(memrchr(data_, c, size_));