Explorar o código

Fix a reverse-inull warning from coverity in new code.

Nick Mathewson %!s(int64=5) %!d(string=hai) anos
pai
achega
79a7fbb79b
Modificáronse 1 ficheiros con 1 adicións e 2 borrados
  1. 1 2
      src/lib/tls/tortls_openssl.c

+ 1 - 2
src/lib/tls/tortls_openssl.c

@@ -659,8 +659,7 @@ tor_tls_context_new(crypto_pk_t *identity, unsigned int key_lifetime,
   tls_log_errors(NULL, LOG_WARN, LD_NET, "creating TLS context");
   if (pkey)
     EVP_PKEY_free(pkey);
-  if (result)
-    tor_tls_context_decref(result);
+  tor_tls_context_decref(result);
   return NULL;
 }