summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorintae, jeon <intae.jeon@samsung.com>2016-11-30 23:20:28 -0800
committerGerrit Code Review <gerrit@review.vlan103.tizen.org>2016-11-30 23:20:28 -0800
commit96be66fb5e0f6b2ca1be1cd1d743e012e8522886 (patch)
treee7fc3b68ce5c8ccb3634b01519a537a372978e2d
parent4e45fc2774fab08603b2e0bfa15fb40a7bd6c8b5 (diff)
parentd7b9143de40eb3a1ef66a7d9b46db1198ad04bbe (diff)
downloademail-service-96be66fb5e0f6b2ca1be1cd1d743e012e8522886.tar.gz
email-service-96be66fb5e0f6b2ca1be1cd1d743e012e8522886.tar.bz2
email-service-96be66fb5e0f6b2ca1be1cd1d743e012e8522886.zip
Merge "fix uninitialized variable(TSAM_10623)" into tizen
-rwxr-xr-xemail-core/email-core-imap-mailbox.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/email-core/email-core-imap-mailbox.c b/email-core/email-core-imap-mailbox.c
index c1349bf..4a96d77 100755
--- a/email-core/email-core-imap-mailbox.c
+++ b/email-core/email-core-imap-mailbox.c
@@ -1037,7 +1037,7 @@ FINISH_OFF:
quota_t callback_for_get_quota_root(MAILSTREAM *stream, unsigned char *mailbox, STRINGLIST *quota_root_list)
{
EM_DEBUG_FUNC_BEGIN();
- quota_t ret_quota;
+ quota_t ret_quota = NIL;
EM_DEBUG_FUNC_END();
return ret_quota;
}
@@ -1045,7 +1045,7 @@ quota_t callback_for_get_quota_root(MAILSTREAM *stream, unsigned char *mailbox,
quota_t callback_for_get_quota(MAILSTREAM *stream, unsigned char *quota_root, QUOTALIST *quota_list)
{
EM_DEBUG_FUNC_BEGIN();
- quota_t ret_quota;
+ quota_t ret_quota = NIL;
EM_DEBUG_FUNC_END();
return ret_quota;
}