diff options
-rw-r--r-- | libbb/strrstr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/strrstr.c b/libbb/strrstr.c index 088d9f457..f61dd517f 100644 --- a/libbb/strrstr.c +++ b/libbb/strrstr.c | |||
@@ -24,7 +24,7 @@ char* strrstr(const char *haystack, const char *needle) | |||
24 | char *r = NULL; | 24 | char *r = NULL; |
25 | 25 | ||
26 | if (!needle[0]) | 26 | if (!needle[0]) |
27 | return (char*)haystack; | 27 | return (char*)haystack + strlen(haystack); |
28 | while (1) { | 28 | while (1) { |
29 | char *p = strstr(haystack, needle); | 29 | char *p = strstr(haystack, needle); |
30 | if (!p) | 30 | if (!p) |