aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libbb/last_char_is.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/libbb/last_char_is.c b/libbb/last_char_is.c
index 66f2e3635..918526e6c 100644
--- a/libbb/last_char_is.c
+++ b/libbb/last_char_is.c
@@ -8,16 +8,17 @@
8 */ 8 */
9#include "libbb.h" 9#include "libbb.h"
10 10
11/* Find out if the last character of a string matches the one given. 11/* Find out if the last character of a string matches the one given */
12 * Don't underrun the buffer if the string length is 0.
13 */
14char* FAST_FUNC last_char_is(const char *s, int c) 12char* FAST_FUNC last_char_is(const char *s, int c)
15{ 13{
16 if (s && *s) { 14 if (s) {
17 size_t sz = strlen(s) - 1; 15 size_t sz = strlen(s);
18 s += sz; 16 /* Don't underrun the buffer if the string length is 0 */
19 if ( (unsigned char)*s == c) 17 if (sz != 0) {
20 return (char*)s; 18 s += sz - 1;
19 if ((unsigned char)*s == c)
20 return (char*)s;
21 }
21 } 22 }
22 return NULL; 23 return NULL;
23} 24}