(/home/sate/Testcases/c/cve/dovecot-1.2.0/src/lib-storage/index/maildir/maildir-sync.c) |
| |
| 959 | | | int maildir_sync_is_synced(struct maildir_mailbox *mbox) |
| 960 | | | { |
| 961 | | | bool new_changed, cur_changed; |
| 962 | | | int ret; |
| 963 | | | |
| 964 | | | T_BEGIN {
x /home/sate/Testcases/c/cve/dovecot-1.2.0/src/lib/data-stack.h |
| |
49 | #define T_BEGIN \ |
50 | STMT_START { unsigned int _data_stack_cur_id = t_push(); |
| |
|
| 965 | | | const char *new_dir, *cur_dir; |
| 966 | | | |
| 967 | | | new_dir = t_strconcat(mbox->path, "/new", NULL); |
| 968 | [+] | | cur_dir = t_strconcat(mbox->path, "/cur", NULL); |
 |
| 969 | | | |
| 970 | | | ret = maildir_sync_quick_check(mbox, FALSE, new_dir, cur_dir, |
Event 7:
cur_dir, which evaluates to NULL, is passed to maildir_sync_quick_check() as the fourth argument. See related event 6.
hide
|
|
| 971 | [+] | | &new_changed, &cur_changed); |
 |
| |