aboutsummaryrefslogtreecommitdiff
path: root/admin/ipmitool/patches/0002-ID-461-Make-compiler-happier-about-changes-related-t.patch
blob: 9690d879b6d4c5bfc24e50e0e3bca80cb1e6e114 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
From 77fe5635037ebaf411cae46cf5045ca819b5c145 Mon Sep 17 00:00:00 2001
From: Zdenek Styblik <stybla@turnovfree.net>
Date: Sun, 15 Jan 2017 15:11:25 +0100
Subject: [PATCH 2/4] ID:461 - Make compiler happier about changes related to
 OpenSSL 1.1

Complaint was that ctx isn't initialized.
---
 src/plugins/lanplus/lanplus_crypt_impl.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

--- a/src/plugins/lanplus/lanplus_crypt_impl.c
+++ b/src/plugins/lanplus/lanplus_crypt_impl.c
@@ -164,7 +164,7 @@ lanplus_encrypt_aes_cbc_128(const uint8_
 							uint8_t       * output,
 							uint32_t        * bytes_written)
 {
-	EVP_CIPHER_CTX* ctx;
+	EVP_CIPHER_CTX *ctx = NULL;
 	EVP_CIPHER_CTX_init(ctx);
 	EVP_EncryptInit_ex(ctx, EVP_aes_128_cbc(), NULL, key, iv);
 	EVP_CIPHER_CTX_set_padding(ctx, 0);
@@ -239,7 +239,7 @@ lanplus_decrypt_aes_cbc_128(const uint8_
 							uint8_t       * output,
 							uint32_t        * bytes_written)
 {
-	EVP_CIPHER_CTX* ctx;
+	EVP_CIPHER_CTX *ctx = NULL;
 	EVP_CIPHER_CTX_init(ctx);
 	EVP_DecryptInit_ex(ctx, EVP_aes_128_cbc(), NULL, key, iv);
 	EVP_CIPHER_CTX_set_padding(ctx, 0);