Commit ffb91088 authored by vaclav's avatar vaclav
Browse files

issue 852: Fix missing handle dereferencing of hIsmMetadaData in...

issue 852: Fix missing handle dereferencing of hIsmMetadaData in ivas_ism_metadata_close(); under FIX_852_FIX_HANDLE_DEREF
parent 6055cbe3
Loading
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -602,7 +602,11 @@ void ivas_ism_metadata_close(
{
    int16_t n;

#ifdef FIX_852_FIX_HANDLE_DEREF
    if ( hIsmMetaData == NULL || *hIsmMetaData == NULL )
#else
    if ( hIsmMetaData == NULL || hIsmMetaData == NULL )
#endif
    {
        return;
    }
+1 −0
Original line number Diff line number Diff line
@@ -156,6 +156,7 @@
#define FIX_818_DOUBLE_PREC_KERNEL_SW                   /* FhG: Issue 818: Avoid double precision in kernel switching */
#define FIX_822_REFACTOR_BIN_REVERB_OPEN                /* Nokia: Addresses first step of issue 822 by refactoring ivas_binaural_reverb_open */
#define FIX_847_OUTPUT_PCM_BUFFER                       /* VA: issue 847: Allocate decoder output PCM buffer dynamically */
#define FIX_852_FIX_HANDLE_DEREF                        /* VA: issue 852: Fix missing handle dereferencing of hIsmMetadaData in ivas_ism_metadata_close() */

/* #################### End BE switches ################################## */