Merge "Fix a use-of-uninitialized-value warning." am: 500cf67206 am: f77f2cb3e7

am: 0c6283e396

Change-Id: Ife5d9444f9036c16540bd7bf7a1c0e17cf296df5
This commit is contained in:
George Burgess IV
2017-01-25 20:19:05 +00:00
committed by android-build-merger

View File

@@ -509,7 +509,7 @@ android_hardware_SoundTrigger_loadSoundModel(JNIEnv *env, jobject thiz,
sp<MemoryDealer> memoryDealer;
sp<IMemory> memory;
size_t size;
sound_model_handle_t handle;
sound_model_handle_t handle = 0;
jobject jUuid;
jstring jUuidString;
const char *nUuidString;