From: hj kim Date: Thu, 8 Oct 2020 03:02:11 +0000 (+0900) Subject: build error fix X-Git-Tag: submit/tizen_5.5/20201008.063344~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7027f0acfa8bcc0e1e74ed5a0f6f57e7635b5dd6;p=platform%2Fcore%2Fapi%2Fmedia-controller.git build error fix Change-Id: I1fd9828fa2eb75911e3ab817aa5218bd26544dca --- diff --git a/svc/media_controller_svc.c b/svc/media_controller_svc.c index ded7fd3..b0a2822 100644 --- a/svc/media_controller_svc.c +++ b/svc/media_controller_svc.c @@ -668,14 +668,14 @@ static gboolean __mc_read_service_request_tcp_socket(GIOChannel *src, GIOConditi req = (mc_service_request *) calloc(1, sizeof(mc_service_request)); if (req == NULL) { mc_error("memory allocation is failed"); - send_msg = MEDIA_CONTROLLER_ERROR_OUT_OF_MEMORY; + msg = MEDIA_CONTROLLER_ERROR_OUT_OF_MEMORY; goto ERROR; } req->req_msg = (mc_comm_msg_s *) calloc(1, sizeof(mc_comm_msg_s)); if (req->req_msg == NULL) { mc_error("memory allocation is failed"); - send_msg = MEDIA_CONTROLLER_ERROR_OUT_OF_MEMORY; + msg = MEDIA_CONTROLLER_ERROR_OUT_OF_MEMORY; goto ERROR; }