Loading crypto/buffer/buf_str.c +1 −1 Original line number Diff line number Diff line Loading @@ -66,7 +66,7 @@ size_t BUF_strnlen(const char *str, size_t maxlen) { const char *p; for (p = str; *p != '\0' && maxlen-- != 0; ++p) for (p = str; maxlen-- != 0 && *p != '\0'; ++p) ; return p - str; Loading Loading
crypto/buffer/buf_str.c +1 −1 Original line number Diff line number Diff line Loading @@ -66,7 +66,7 @@ size_t BUF_strnlen(const char *str, size_t maxlen) { const char *p; for (p = str; *p != '\0' && maxlen-- != 0; ++p) for (p = str; maxlen-- != 0 && *p != '\0'; ++p) ; return p - str; Loading