[client] main: fix failure to check KVMFR udata at connect

This commit is contained in:
Geoffrey McRae 2022-02-08 15:49:48 +11:00
parent 3890c72159
commit 1cfbcba813

View File

@ -1264,11 +1264,12 @@ restart:
while(g_state.state == APP_STATE_RUNNING)
{
if ((status = lgmpClientSessionInit(g_state.lgmp, &udataSize, (uint8_t **)&udata)) == LGMP_OK)
break;
status = lgmpClientSessionInit(g_state.lgmp, &udataSize, (uint8_t **)&udata);
switch(status)
{
case LGMP_OK:
break;
case LGMP_ERR_INVALID_VERSION:
{
reportBadVersion();