summaryrefslogtreecommitdiffstats
path: root/sec.c
diff options
context:
space:
mode:
authorPaul Kocialkowski <contact@paulk.fr>2013-03-31 22:46:24 +0200
committerPaul Kocialkowski <contact@paulk.fr>2013-03-31 22:48:21 +0200
commitab6eef687bc891e3e47edd43cee7e39336d30d26 (patch)
treebb61b1c5fc844cc78ec1311dc830cdb40c787229 /sec.c
parent05951ff716f62b05da40fef1aa1f82e2fa9d2601 (diff)
downloadhardware_ril_samsung-ril-ab6eef687bc891e3e47edd43cee7e39336d30d26.zip
hardware_ril_samsung-ril-ab6eef687bc891e3e47edd43cee7e39336d30d26.tar.gz
hardware_ril_samsung-ril-ab6eef687bc891e3e47edd43cee7e39336d30d26.tar.bz2
Avoid checking ipc_message_info pointer since it is checked in readloop
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
Diffstat (limited to 'sec.c')
-rw-r--r--sec.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/sec.c b/sec.c
index 390d1d7..c23312c 100644
--- a/sec.c
+++ b/sec.c
@@ -214,7 +214,7 @@ void ipc_sec_sim_status(struct ipc_message_info *info)
#endif
ril_sim_state sim_state;
- if (info == NULL || info->data == NULL || info->length < sizeof(struct ipc_sec_sim_status_response))
+ if (info->data == NULL || info->length < sizeof(struct ipc_sec_sim_status_response))
goto error;
pin_status = (struct ipc_sec_sim_status_response *) info->data;
@@ -315,7 +315,7 @@ void ipc_sec_sim_icc_type(struct ipc_message_info *info)
{
struct ipc_sec_sim_icc_type *sim_icc_type;
- if (info == NULL || info->data == NULL || info->length < sizeof(struct ipc_sec_sim_icc_type))
+ if (info->data == NULL || info->length < sizeof(struct ipc_sec_sim_icc_type))
goto error;
sim_icc_type = (struct ipc_sec_sim_icc_type *) info->data;
@@ -576,7 +576,7 @@ void ipc_sec_rsim_access(struct ipc_message_info *info)
int offset;
int i;
- if (info == NULL || info->data == NULL || info->length < sizeof(struct ipc_sec_rsim_access_response))
+ if (info->data == NULL || info->length < sizeof(struct ipc_sec_rsim_access_response))
goto error;
sim_io_info = ril_request_sim_io_info_find_token(ril_request_get_token(info->aseq));
@@ -704,8 +704,7 @@ void ipc_sec_rsim_access(struct ipc_message_info *info)
return;
error:
- if (info != NULL)
- ril_request_complete(ril_request_get_token(info->aseq), RIL_E_GENERIC_FAILURE, NULL, 0);
+ ril_request_complete(ril_request_get_token(info->aseq), RIL_E_GENERIC_FAILURE, NULL, 0);
}
void ipc_sec_sim_status_complete(struct ipc_message_info *info)
@@ -743,7 +742,7 @@ void ipc_sec_lock_info(struct ipc_message_info *info)
struct ipc_sec_lock_info_response *lock_info;
int attempts;
- if (info == NULL || info->data == NULL || info->length < sizeof(struct ipc_sec_lock_info_response))
+ if (info->data == NULL || info->length < sizeof(struct ipc_sec_lock_info_response))
return;
lock_info = (struct ipc_sec_lock_info_response *) info->data;
@@ -865,7 +864,7 @@ void ipc_sec_phone_lock(struct ipc_message_info *info)
int status;
struct ipc_sec_phone_lock_response *lock;
- if (info == NULL || info->data == NULL || info->length < sizeof(struct ipc_sec_phone_lock_response))
+ if (info->data == NULL || info->length < sizeof(struct ipc_sec_phone_lock_response))
goto error;
lock = (struct ipc_sec_phone_lock_response *) info->data;
@@ -876,8 +875,7 @@ void ipc_sec_phone_lock(struct ipc_message_info *info)
return;
error:
- if (info != NULL)
- ril_request_complete(ril_request_get_token(info->aseq), RIL_E_GENERIC_FAILURE, NULL, 0);
+ ril_request_complete(ril_request_get_token(info->aseq), RIL_E_GENERIC_FAILURE, NULL, 0);
}
void ril_request_query_facility_lock(RIL_Token t, void *data, size_t length)