Tizen coding rule violation fixed 78/87678/3
authorKyeonghun Lee <kh9090.lee@samsung.com>
Fri, 9 Sep 2016 05:55:55 +0000 (14:55 +0900)
committerKyeonghun Lee <kh9090.lee@samsung.com>
Tue, 20 Sep 2016 06:15:21 +0000 (23:15 -0700)
Change-Id: Ice2309adabae50c41ee764ec53b1e5dc8ec3ffd3
Signed-off-by: Kyeonghun Lee <kh9090.lee@samsung.com>
framework/storage-handler/MsgStorageMessage.cpp
plugin/mms_plugin/MmsPluginConnManWrapper.cpp

index f063392..de136bf 100755 (executable)
@@ -2074,7 +2074,6 @@ msg_error_t MsgStoGetMessage(msg_message_id_t msgId, MSG_MESSAGE_INFO_S *pMsg, M
                        memset(pMsg->msgText, 0x00, sizeof(pMsg->msgText));
                        memset(pMsg->subject, 0x00, sizeof(pMsg->subject));
                        memset(pMsg->thumbPath, 0x00, sizeof(pMsg->thumbPath));
-
                }
 
                pMsg->sim_idx = dbHandle->columnInt(19);
@@ -3164,7 +3163,7 @@ msg_error_t MsgStoUpdateDPMRestrictedStatus(MSG_MAIN_TYPE_T msgType)
        char sqlQuery[MAX_QUERY_LEN+1];
        MsgDbHandler *dbHandle = getDbHandle();
 
-       msg_id_list_s msgIdList = {0,};
+       msg_id_list_s msgIdList = {0, };
        int rowCnt = 0;
 
        memset(sqlQuery, 0x00, sizeof(sqlQuery));
index 3e93f91..732807b 100755 (executable)
@@ -593,7 +593,7 @@ void MmsPluginCmAgent::connection_profile_open_callback(connection_error_e resul
                                                if (!(strlen(this->dns_address_list) > 1)) {
                                                        snprintf(this->dns_address_list, 50, "%s", dns);
                                                } else {
-                                                       snprintf(this->dns_address_list  + strlen(this->dns_address_list ), 50 - strlen(this->dns_address_list ), ",%s", dns);
+                                                       snprintf(this->dns_address_list + strlen(this->dns_address_list), 50 - strlen(this->dns_address_list), ",%s", dns);
                                                }
                                        }
                                        MSG_FREE(dns);
@@ -709,7 +709,7 @@ void MmsPluginCmAgent::connection_profile_state_changed_cb(connection_profile_st
                                        if (!(strlen(this->dns_address_list) > 1)) {
                                                snprintf(this->dns_address_list, 50, "%s", dns);
                                        } else {
-                                               snprintf(this->dns_address_list  + strlen(this->dns_address_list ), 50 - strlen(this->dns_address_list ), ",%s", dns);
+                                               snprintf(this->dns_address_list + strlen(this->dns_address_list), 50 - strlen(this->dns_address_list), ",%s", dns);
                                        }
                                }
                                MSG_FREE(dns);