79c4324644
Change-Id: I2d302dda68298877c65c99147f5bf22186a59aac
37 lines
1.2 KiB
Diff
37 lines
1.2 KiB
Diff
From b055bedb3fba592ab7e73615faf29854a18b0abc Mon Sep 17 00:00:00 2001
|
|
From: qihao <qihao_yewu@cmss.chinamobile.com>
|
|
Date: Tue, 10 Oct 2023 15:24:35 +0800
|
|
Subject: [PATCH] crypto: remove shadowed 'ret' variable
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
cheery-pick from 3cc9fe177f412494f084923149338c51dd232b9b
|
|
|
|
Both instances of 'ret' are used to store a gnutls API return code.
|
|
|
|
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
|
|
Message-ID: <20230922160644.438631-2-berrange@redhat.com>
|
|
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
|
|
Signed-off-by: Markus Armbruster <armbru@redhat.com>
|
|
Signed-off-by: qihao_yewu <qihao_yewu@cmss.chinamobile.com>
|
|
---
|
|
crypto/tls-cipher-suites.c | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
diff --git a/crypto/tls-cipher-suites.c b/crypto/tls-cipher-suites.c
|
|
index 5e4f597464..d0df4badc0 100644
|
|
--- a/crypto/tls-cipher-suites.c
|
|
+++ b/crypto/tls-cipher-suites.c
|
|
@@ -52,7 +52,6 @@ GByteArray *qcrypto_tls_cipher_suites_get_data(QCryptoTLSCipherSuites *obj,
|
|
byte_array = g_byte_array_new();
|
|
|
|
for (i = 0;; i++) {
|
|
- int ret;
|
|
unsigned idx;
|
|
const char *name;
|
|
IANA_TLS_CIPHER cipher;
|
|
--
|
|
2.41.0.windows.1
|
|
|