projects
/
platform
/
core
/
messaging
/
email-service.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f08ff3d
)
fix uninitialized variable(TSAM_10623)
39/102039/1
author
intae, jeon
<intae.jeon@samsung.com>
Thu, 1 Dec 2016 03:50:03 +0000
(12:50 +0900)
committer
intae jeon
<intae.jeon@samsung.com>
Sun, 4 Dec 2016 23:56:03 +0000
(15:56 -0800)
Change-Id: Ic34a550f44aea231e27b53d5a4aff203e9d007b1
Signed-off-by: intae, jeon <intae.jeon@samsung.com>
(cherry picked from commit
d7b9143de40eb3a1ef66a7d9b46db1198ad04bbe
)
email-core/email-core-imap-mailbox.c
patch
|
blob
|
history
diff --git
a/email-core/email-core-imap-mailbox.c
b/email-core/email-core-imap-mailbox.c
index c1349bf1069ae34092a1cd382878b0448b12025d..4a96d7725d1d31efa5bacc2b655bd8bdd3d18bdf 100755
(executable)
--- 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;
}