From c9fc143972c9ab5d10111b303818a306b3516ebe Mon Sep 17 00:00:00 2001
From: Ben Laurie <ben@openssl.org>
Date: Wed, 26 Sep 2001 11:38:57 +0000
Subject: [PATCH] Fix warning.

---
 crypto/engine/eng_table.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/engine/eng_table.c b/crypto/engine/eng_table.c
index 4192144565..f3210f4d4c 100644
--- a/crypto/engine/eng_table.c
+++ b/crypto/engine/eng_table.c
@@ -249,7 +249,7 @@ ENGINE *engine_table_select_tmp(ENGINE_TABLE **table, int nid, const char *f, in
 #endif
 	{
 	ENGINE *ret = NULL;
-	ENGINE_PILE tmplate, *fnd;
+	ENGINE_PILE tmplate, *fnd=NULL;
 	int initres, loop = 0;
 
 	/* If 'engine_ciphers' is NULL, then it's absolutely *sure* that no
-- 
2.40.0