From 21ffb71277fd590684bf74027093fa65648f42aa Mon Sep 17 00:00:00 2001 From: "wn.jang" Date: Tue, 21 Mar 2023 09:49:09 +0900 Subject: [PATCH] Fix memory leak detected by static analysis tool Change-Id: I332780d46eb2d8ad297a0526a87eac1ae06afdad --- common/tts_config_mgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/tts_config_mgr.c b/common/tts_config_mgr.c index 7681be1..41f8261 100644 --- a/common/tts_config_mgr.c +++ b/common/tts_config_mgr.c @@ -589,7 +589,7 @@ static void invoke_pitch_changed_event(int pitch) delete_pitch_changed_event_invoker(); int *params = (int *)calloc(1, sizeof(int)); - if (NULL != params) { + if (NULL == params) { SLOG(LOG_ERROR, TAG_TTSCONFIG, "[ERROR] Fail to allocate the memory for parameter"); return; } -- 2.7.4