Hello!

I have a question about the check in the ssl_parse_serverhello_tlsext
function:

========
  if (data >= (d+n-2))
    goto ri_check;
========
Shouldn't it be
========
  if (data > (d+n-2))
    goto ri_check;
========
instead?

Thank you!

-- 
SY, Dmitry Belyavsky

Reply via email to