xml: fix uninitialized local variable (#85339)

This commit is contained in:
Benjamin Dauvergne 2024-01-24 18:51:27 +01:00
parent fe27e52da0
commit 46caef8185
1 changed files with 1 additions and 1 deletions

View File

@ -2704,7 +2704,7 @@ cleanup:
xmlSecKeyPtr
lasso_xmlsec_load_key_info(xmlNode *key_descriptor)
{
xmlSecKeyPtr key, result = NULL;
xmlSecKeyPtr key = NULL, result = NULL;
xmlNodePtr key_info = NULL;
xmlSecKeyInfoCtx ctx = {0};
xmlSecKeysMngr *keys_mngr = NULL;