diff options
Diffstat (limited to 'src/string/strstr.c')
| -rw-r--r-- | src/string/strstr.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/string/strstr.c b/src/string/strstr.c index fa5db853..eac8ea77 100644 --- a/src/string/strstr.c +++ b/src/string/strstr.c @@ -12,6 +12,7 @@ char * strstr(const char *s1, const char *s2) SIGNAL_SAFE(0); ASSERT_NONNULL(s1); ASSERT_NONNULL(s2); + /* no modifcation, overlap is OK */ l1 = strlen(s1); l2 = strlen(s2); |
