From: SooChan Lim Date: Thu, 17 Jun 2021 10:29:16 +0000 (+0900) Subject: tbm_module: do not print error message X-Git-Tag: submit/tizen/20210618.025159~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=86bbaa419184bd0a189896b347a4fcbd9c894c54;hp=3b5a63a96137b57886367b3b9b5b4d0cfc44d633;p=platform%2Fcore%2Fuifw%2Flibtbm.git tbm_module: do not print error message do not print error message when the bufmgr_func->bufmgr_alloc_bo_with_format does not exists. when it does not exists, allocation logic call the fallback alloc_bo function. Change-Id: If760eab7372ad67bc032f1ae99c28829ff7fc834 --- diff --git a/src/tbm_module.c b/src/tbm_module.c index 2a27021..974c67b 100644 --- a/src/tbm_module.c +++ b/src/tbm_module.c @@ -703,7 +703,10 @@ tbm_module_bufmgr_bo_alloc_with_format(tbm_module *module, int format, int bo_id case TBM_MODULE_TYPE_TBM_BACKEND: bufmgr_func = module->bufmgr_func; TBM_RETURN_VAL_SET_ERR_IF_FAIL(bufmgr_func, NULL, *error, TBM_ERROR_INVALID_OPERATION); - TBM_RETURN_VAL_SET_ERR_IF_FAIL(bufmgr_func->bufmgr_alloc_bo_with_format, NULL, *error, TBM_ERROR_NOT_SUPPORTED); + if (!bufmgr_func->bufmgr_alloc_bo_with_format) { + *error = TBM_ERROR_NOT_SUPPORTED; + return NULL; + } bo_data = bufmgr_func->bufmgr_alloc_bo_with_format(module->bufmgr_data, format, bo_idx, width, height, flags, error); break;