Merge "st-hal: fix mem leak issue"
diff --git a/st_session.c b/st_session.c
index 5582c5f..9bb1c09 100644
--- a/st_session.c
+++ b/st_session.c
@@ -3299,13 +3299,6 @@
             }
         }
     } else {
-        local_event = calloc(1, sizeof(*local_event) + payload_size);
-        if (!local_event) {
-            ALOGE("%s: event allocation failed, size %zd", __func__,
-                  payload_size);
-            status = -ENOMEM;
-            goto exit;
-        }
         memcpy(local_event->phrase_extras,
             stc_ses->rc_config->phrases, stc_ses->rc_config->num_phrases *
             sizeof(struct sound_trigger_phrase_recognition_extra));