Commit 80ad490d authored by sagnowski's avatar sagnowski
Browse files

Fix incorrect member accesses

parent bf890991
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -3919,7 +3919,7 @@ ivas_error IVAS_REND_Open(
        hIvasRend->inputsIsm[i].tdRendWrapper.hBinRendererTd = NULL;
        move32();
#ifdef BE_FIX_BASOP_2543_MISMATCH_REND_OPEN_FX_FL
        FOR( j = 0; j < (Word16) ( sizeof( hIvasRend->inputsMc[i].splitTdRendWrappers ) / sizeof( *hIvasRend->inputsMc[i].splitTdRendWrappers ) ); ++j )
        FOR( j = 0; j < (Word16) ( sizeof( hIvasRend->inputsIsm[i].splitTdRendWrappers ) / sizeof( *hIvasRend->inputsIsm[i].splitTdRendWrappers ) ); ++j )
#else
        FOR( j = 0; j < MAX_HEAD_ROT_POSES - 1; ++j )
#endif
@@ -3962,7 +3962,7 @@ ivas_error IVAS_REND_Open(
        hIvasRend->inputsMc[i].hMcMasa = NULL;
        move32();
#ifdef BE_FIX_BASOP_2543_MISMATCH_REND_OPEN_FX_FL
        FOR( j = 0; j < (Word16) ( sizeof( hIvasRend->inputsIsm[i].splitTdRendWrappers ) / sizeof( *hIvasRend->inputsIsm[i].splitTdRendWrappers ) ); ++j )
        FOR( j = 0; j < (Word16) ( sizeof( hIvasRend->inputsMc[i].splitTdRendWrappers ) / sizeof( *hIvasRend->inputsMc[i].splitTdRendWrappers ) ); ++j )
#else
        FOR( j = 0; j < MAX_HEAD_ROT_POSES - 1; ++j )
#endif