mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-20 00:10:41 -05:00
BUG/MINOR: ssl_ckch: Fix possible uninitialized value in show_crlfile I/O handler
Commit 9a99e5478 ("BUG/MINOR: ssl_ckch: Dump CRL transaction only once if
show command yield") introduced a regression leading to a build error
because of a possible uninitialized value. It is now fixed.
This patch must be backported as far as 2.5.
This commit is contained in:
parent
677cb4fa91
commit
88041b35c3
1 changed files with 1 additions and 1 deletions
|
|
@ -3715,7 +3715,7 @@ static int cli_io_handler_show_crlfile(struct appctx *appctx)
|
|||
struct show_crlfile_ctx *ctx = appctx->svcctx;
|
||||
struct buffer *trash = alloc_trash_chunk();
|
||||
struct ebmb_node *node;
|
||||
struct cafile_entry *cafile_entry;
|
||||
struct cafile_entry *cafile_entry = NULL;
|
||||
|
||||
if (trash == NULL)
|
||||
return 1;
|
||||
|
|
|
|||
Loading…
Reference in a new issue