Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d2862051 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix "Dereference of null pointer" compiler warning."

parents 1fba0b75 5bfdce99
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -20,11 +20,15 @@

*******************************************************************************/

#include "android/log.h"

#include "aac_rom.h"
#include "dyn_bits.h"
#include "bit_cnt.h"
#include "psy_const.h"

#define LOG_TAG "NoiselessCoder"

/*****************************************************************************
*
* function name: buildBitLookUp
@@ -296,6 +300,9 @@ noiselessCounter(SECTION_DATA *sectionData,
    case SHORT_WINDOW:
      sideInfoTab = sideInfoTabShort;
      break;
    default:
      ALOGE("invalid blockType: %d", blockType);
      return;
  }