diff options
author | Abhimanyu Swami <abhimanyu1.s@samsung.com> | 2021-02-01 12:32:01 +0530 |
---|---|---|
committer | Abhimanyu Swami <abhimanyu1.s@samsung.com> | 2021-02-01 12:32:01 +0530 |
commit | 13fa9892c87b68c6a696ab28615aacd6edfe72f9 (patch) | |
tree | de21ce51168fc71888754b6042cbc4a7e829b3a2 | |
parent | 2ecadb061a7cd75bd15aad72e349297625f76a58 (diff) | |
download | msg-service-13fa9892c87b68c6a696ab28615aacd6edfe72f9.tar.gz msg-service-13fa9892c87b68c6a696ab28615aacd6edfe72f9.tar.bz2 msg-service-13fa9892c87b68c6a696ab28615aacd6edfe72f9.zip |
ASAN issue fixsubmit/tizen/20210202.074204
Change-Id: I420122d8642484001c86c50307ffdcdc1ca4fecc
Signed-off-by: Abhimanyu Swami <abhimanyu1.s@samsung.com>
-rwxr-xr-x | plugin/sms_plugin/3gpp/Sms3gppTransport.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/sms_plugin/3gpp/Sms3gppTransport.cpp b/plugin/sms_plugin/3gpp/Sms3gppTransport.cpp index 008a157..3a43cfc 100755 --- a/plugin/sms_plugin/3gpp/Sms3gppTransport.cpp +++ b/plugin/sms_plugin/3gpp/Sms3gppTransport.cpp @@ -126,7 +126,7 @@ msg_error_t Sms3gppSubmitRequest(MSG_REQUEST_INFO_S *pReqInfo) char keyName[MAX_VCONFKEY_NAME_LEN] = {0,}; snprintf(keyName, sizeof(keyName), "%s/%d", MSG_SIM_CHANGED, pReqInfo->msgInfo.sim_idx); - MSG_SIM_STATUS_T simStatus = 0; + int simStatus = 0; if (MsgSettingGetInt(keyName, (int*)&simStatus) != MSG_SUCCESS) { MSG_INFO("MsgSettingGetInt() failed!"); } |