Replace g_malloc to malloc 48/59248/1 accepted/tizen/ivi/20160218.023901 accepted/tizen/mobile/20160212.050212 accepted/tizen/tv/20160212.050215 accepted/tizen/wearable/20160212.050219 submit/tizen/20160212.035219 submit/tizen_common/20160218.142243 submit/tizen_ivi/20160217.000000 submit/tizen_ivi/20160217.000003
authorJi Yong Min <jiyong.min@samsung.com>
Fri, 12 Feb 2016 00:21:03 +0000 (09:21 +0900)
committerJi Yong Min <jiyong.min@samsung.com>
Fri, 12 Feb 2016 00:21:34 +0000 (09:21 +0900)
Change-Id: I048843fbd02e128c5a0dfdeb4906e331d0369eb2
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
gstcs/mm_util_gstcs.c

index 4b3a6e5..5dd8667 100755 (executable)
@@ -584,7 +584,7 @@ _mm_push_buffer_into_pipeline_new(image_format_s *input_format, image_format_s *
        unsigned int stride_row = stride * byte_per_pixcel;
        unsigned int i = 0, y = 0;
        gstcs_debug("padding will be inserted to buffer");
-       data = (unsigned char *) g_malloc(src_size);
+       data = (unsigned char *) malloc(src_size);
        if (data == NULL) {
                gstcs_error("app_buffer is NULL\n");
                return GSTCS_ERROR_INVALID_PARAMETER;