• Show log

    Commit

  • Hash : 657197e6
    Author : Patrick Steinhardt
    Date : 2019-01-23T15:54:05

    openssl: fix potential size overflow when writing data Our `openssl_write` function calls `SSL_write` by passing in both `data` and `len` arguments directly. Thing is, our `len` parameter is of type `size_t` and theirs is of type `int`. We thus need to clamp our length to be at most `INT_MAX`.