(/home/sate/Testcases/c/cve/dovecot-1.2.0/src/plugins/imap-quota/imap-quota-plugin.c) |
| |
| 32 | | | quota_send(struct client_command_context *cmd, struct mail_user *owner, |
| 33 | | | struct quota_root *root) |
| 34 | | | { |
| 35 | | | const char *name, *const *list; |
| 36 | | | string_t *str; |
| 37 | | | unsigned int i; |
| 38 | | | uint64_t value, limit; |
| 39 | | | int ret; |
| 40 | | | |
| 41 | | | str = t_str_new(128); |
| 42 | | | str_append(str, "* QUOTA "); |
| 43 | [+] | | name = imap_quota_root_get_name(cmd->client->user, owner, root); |
 |
| 44 | [+] | | imap_quote_append_string(str, name, FALSE);
x /home/sate/Testcases/c/cve/dovecot-1.2.0/src/lib-imap/imap-quote.h |
| |
14 | #define imap_quote_append_string(str, value, compress_lwsp) \ |
15 | imap_quote_append(str, (const unsigned char *)(value), \ |
16 | (size_t)-1, compress_lwsp) |
| |
|
Event 35:
name, which evaluates to the value assigned to ret at data-stack.c:335, is passed to imap_quote_append() as the second argument. See related event 34.
hide
|
|
 |
| |