1. 28 5月, 2015 3 次提交
  2. 27 5月, 2015 1 次提交
  3. 26 5月, 2015 17 次提交
  4. 25 5月, 2015 3 次提交
  5. 23 5月, 2015 10 次提交
  6. 22 5月, 2015 4 次提交
    • M
      Ignore files from other branches · 8757bf83
      Matt Caswell 提交于
      There are a number of files that are created on other branches that are
      not held in git and are not needed in master. When checking out master
      after working on another branch these files show up in "git status", so
      just add them to .gitignore
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      8757bf83
    • L
      Lost alert in DTLS · 4dc1aa04
      Lubom 提交于
      If a client receives a bad hello request in DTLS then the alert is not
      sent correctly.
      
      RT#2801
      Signed-off-by: NMatt Caswell <matt@openssl.org>
      Reviewed-by: NKurt Roeckx <kurt@openssl.org>
      4dc1aa04
    • M
      Fix various OPENSSL_NO_* options · a7f82a1a
      Matt Caswell 提交于
      This fixes compilation with various OPENSSL_NO_* options that got broken
      during the big apps cleanup.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      a7f82a1a
    • M
      Fix a memory leak in compression · 6b41b3f5
      Matt Caswell 提交于
      The function RECORD_LAYER_clear() is supposed to clear the contents of the
      RECORD_LAYER structure, but retain certain data such as buffers that are
      allocated. Unfortunately one buffer (for compression) got missed and was
      inadvertently being wiped, thus causing a memory leak.
      
      In part this is due to the fact that RECORD_LAYER_clear() was reaching
      inside SSL3_BUFFERs and SSL3_RECORDs, which it really shouldn't. So, I've
      rewritten it to only clear the data it knows about, and to defer clearing
      of SSL3_RECORD and SSL3_BUFFER structures to SSL_RECORD_clear() and the
      new function SSL3_BUFFER_clear().
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      6b41b3f5
  7. 21 5月, 2015 2 次提交