dbg("numeric(%d)", get_inkey.bIsNumeric);
dbg("help info available(%d)", get_inkey.bIsHelpInfoAvailable);
dbg("text (%s)", get_inkey.text.string);
- dbg("text length", get_inkey.text.stringLen);
- dbg("duration", get_inkey.duration);
+ dbg("text length (%d)", get_inkey.text.stringLen);
+ dbg("duration (%d)", get_inkey.duration);
TAPI_INVOKE_NOTI_CALLBACK(&get_inkey);
} else if (!g_strcmp0(sig, "GetInput")) {
dbg("Func Entrance");
TAPI_RET_ERR_NULL_IF_NOT_SUPPORTED(TELEPHONY_FEATURE);
- TAPI_RET_ERR_NUM_IF_FAIL(handle, NULL);
+ if (!handle) {
+ err("handle is NULL");
+ return NULL;
+ }
dbus_result = g_dbus_connection_call_sync(handle->dbus_connection,
DBUS_TELEPHONY_SERVICE , handle->path, DBUS_TELEPHONY_MODEM_INTERFACE,
int result = 0;
TAPI_RET_ERR_NULL_IF_NOT_SUPPORTED(TELEPHONY_FEATURE);
- TAPI_RET_ERR_NUM_IF_FAIL(handle, NULL);
+ if (!handle) {
+ err("handle is NULL");
+ return NULL;
+ }
sdbg("[%s] Func Entrance", handle->cp_name);
int result = 0;
TAPI_RET_ERR_NULL_IF_NOT_SUPPORTED(TELEPHONY_FEATURE);
- TAPI_RET_ERR_NUM_IF_FAIL(handle, NULL);
+ if (!handle) {
+ err("handle is NULL");
+ return NULL;
+ }
sdbg("[%s] Func Entrance", handle->cp_name);