Commit df065a2b authored by Matt Caswell's avatar Matt Caswell
Browse files

Remove else after a return in packet code



Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
parent 82657355
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@ static size_t maxmaxsize(size_t lenbytes)
{
    if (lenbytes >= sizeof(size_t) || lenbytes == 0)
        return SIZE_MAX;
    else

    return ((size_t)1 << (lenbytes * 8)) - 1 + lenbytes;
}