diff options
| author | Kevin Ballard <[email protected]> | 2013-09-18 13:51:05 -0700 |
|---|---|---|
| committer | Kevin Ballard <[email protected]> | 2013-09-18 13:51:05 -0700 |
| commit | 76a3b83d27a06ff79ca8bd8a652b3476ae3b2c9e (patch) | |
| tree | 0eea9e56014f5f609acde2bd893d03d2d00acad9 | |
| parent | Update to latest rust master (0.8-pre 063a005) (diff) | |
| download | rust-openssl-76a3b83d27a06ff79ca8bd8a652b3476ae3b2c9e.tar.xz rust-openssl-76a3b83d27a06ff79ca8bd8a652b3476ae3b2c9e.zip | |
Update to latest rust master (0.8-pre d2b0b11)
| -rw-r--r-- | hash.rs | 2 | ||||
| -rw-r--r-- | pkey.rs | 2 | ||||
| -rw-r--r-- | symm.rs | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -99,7 +99,7 @@ impl Hasher { } impl Drop for Hasher { - fn drop(&self) { + fn drop(&mut self) { #[fixed_stack_segment]; #[inline(never)]; unsafe { libcrypto::EVP_MD_CTX_destroy(self.ctx); @@ -361,7 +361,7 @@ impl PKey { } impl Drop for PKey { - fn drop(&self) { + fn drop(&mut self) { #[fixed_stack_segment]; #[inline(never)]; unsafe { libcrypto::EVP_PKEY_free(self.evp); @@ -184,7 +184,7 @@ impl Crypter { } impl Drop for Crypter { - fn drop(&self) { + fn drop(&mut self) { #[fixed_stack_segment]; #[inline(never)]; unsafe { libcrypto::EVP_CIPHER_CTX_free(self.ctx); |