aboutsummaryrefslogtreecommitdiff
path: root/libbb/replace.c
diff options
context:
space:
mode:
authorMartin Lewis <martin.lewis.x84@gmail.com>2019-09-15 18:51:30 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2019-10-09 14:39:41 +0200
commit7011eca83afc313098f9869eea36742d4506bc02 (patch)
treefc6d769828c261edb562a372d61c14142d5f32d0 /libbb/replace.c
parentdd4686128290b34d61becaaba88c54d5213f7aa5 (diff)
downloadbusybox-7011eca83afc313098f9869eea36742d4506bc02.tar.gz
replace: count_strstr - Handle an edge case where sub is empty
If sub is empty, avoids an infinite loop. function old new delta count_strstr 45 63 +18 Signed-off-by: Martin Lewis <martin.lewis.x84@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb/replace.c')
-rw-r--r--libbb/replace.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libbb/replace.c b/libbb/replace.c
index a661d96e6..6183d3e6f 100644
--- a/libbb/replace.c
+++ b/libbb/replace.c
@@ -15,6 +15,10 @@ unsigned FAST_FUNC count_strstr(const char *str, const char *sub)
size_t sub_len = strlen(sub);
unsigned count = 0;
+ /* If sub is empty, avoid an infinite loop */
+ if (sub_len == 0)
+ return strlen(str) + 1;
+
while ((str = strstr(str, sub)) != NULL) {
count++;
str += sub_len;