fix uninit ret

This commit is contained in:
Christian Grothoff 2020-02-13 20:43:07 +01:00
parent 1448f97b51
commit d798da08d6
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC

View File

@ -1086,8 +1086,8 @@ main (int argc,
}
/* initialize #internal_key_state with an RC of 1 */
if (GNUNET_OK ==
TEH_KS_init ())
ret = TEH_KS_init ();
if (GNUNET_OK == ret)
{
#if HAVE_DEVELOPER
if (NULL != input_filename)