Commit dd98e38b authored by Dominik Weckbecker's avatar Dominik Weckbecker 💬
Browse files

fix msan error

parent 71575270
Loading
Loading
Loading
Loading
Loading
+13 −10
Original line number Diff line number Diff line
@@ -1061,8 +1061,12 @@ ivas_error IVAS_DEC_FeedFrame_Serial(
                }
                hIsmRendererData->has_been_edited = 0;
            }
        }
    }
#ifdef OBJ_EDITING_PARAMISM
            else if ( hIvasDec->st_ivas->ism_mode == ISM_MODE_PARAM )
    if ( hIvasDec->st_ivas->hParamIsmDec != NULL )
    {
        if ( hIvasDec->st_ivas->ism_mode == ISM_MODE_PARAM )
        {
            int16_t obj = 0;
            PARAM_ISM_DEC_HANDLE hParamIsmDec = hIvasDec->st_ivas->hParamIsmDec;
@@ -1073,9 +1077,8 @@ ivas_error IVAS_DEC_FeedFrame_Serial(
            }
            hParamIsmDec->has_been_edited = 0;
        }
#endif
        }
    }
#endif
#endif

    return IVAS_ERR_OK;