aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-24 21:44:57 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-24 21:44:57 -0600
commite7dc111a2fedbb42e008bb34a4e34835b3a63399 (patch)
tree8e0c661378c9db18f96775a769ac9af67762606c
parent28d1dfaec4e39994340e156a387b7da90643f036 (diff)
downloadcryptography-e7dc111a2fedbb42e008bb34a4e34835b3a63399.tar.gz
cryptography-e7dc111a2fedbb42e008bb34a4e34835b3a63399.tar.bz2
cryptography-e7dc111a2fedbb42e008bb34a4e34835b3a63399.zip
don't reuse a variable, it's confusing
-rw-r--r--src/cryptography/hazmat/backends/openssl/backend.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/cryptography/hazmat/backends/openssl/backend.py b/src/cryptography/hazmat/backends/openssl/backend.py
index 0981b8e0..9ba0f3db 100644
--- a/src/cryptography/hazmat/backends/openssl/backend.py
+++ b/src/cryptography/hazmat/backends/openssl/backend.py
@@ -1513,15 +1513,17 @@ class Backend(object):
pp, r = encode(self, extension.value)
obj = _txt2obj_gc(self, extension.oid.dotted_string)
- extension = self._lib.X509_EXTENSION_create_by_OBJ(
+ x509_extension = self._lib.X509_EXTENSION_create_by_OBJ(
self._ffi.NULL,
obj,
1 if extension.critical else 0,
_encode_asn1_str_gc(self, pp[0], r)
)
- self.openssl_assert(extension != self._ffi.NULL)
- extension = self._ffi.gc(extension, self._lib.X509_EXTENSION_free)
- x509_extensions.append(extension)
+ self.openssl_assert(x509_extension != self._ffi.NULL)
+ x509_extension = self._ffi.gc(
+ x509_extension, self._lib.X509_EXTENSION_free
+ )
+ x509_extensions.append(x509_extension)
return x509_extensions