diff options
Diffstat (limited to 'src/string/strpbrk.c')
-rw-r--r-- | src/string/strpbrk.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/string/strpbrk.c b/src/string/strpbrk.c index 7225ac4c..20e07aa3 100644 --- a/src/string/strpbrk.c +++ b/src/string/strpbrk.c @@ -10,6 +10,7 @@ char * strpbrk(const char *s1, const char *s2) SIGNAL_SAFE(0); ASSERT_NONNULL(s1); ASSERT_NONNULL(s2); + /* TODO: two dangerous reads */ /* no modifcation, overlap is OK */ for (i = 0; i < strlen (s1); i++) { |