Text   |  XML   |  ReML   |   Visible Warnings:

Unreachable Call  at expire-plugin.c:261

No properties have been set. | edit properties
Jump to warning location ↓ warning details...
Show Events | Options

expire_mailbox_open

(/home/sate/Testcases/c/cve/dovecot-1.2.0/src/plugins/expire/expire-plugin.c)expand/collapse
Show more  
 247  static struct mailbox *
 248  expire_mailbox_open(struct mail_storage *storage, const char *name,
 249                      struct istream *input, enum mailbox_open_flags flags)
 250  {
 251          union mail_storage_module_context *xpr_storage =
 252                  EXPIRE_CONTEXT(storage);
 253          struct mailbox *box;
 254          string_t *vname;
 255          unsigned int secs;
 256          bool altmove;
 257   
 258          box = xpr_storage->super.mailbox_open(storage, name, input, flags);
 259          if (box != NULL) {
 260                  vname = t_str_new(128);
 261                  (void)mail_namespace_get_vname(storage->ns, vname, name);
 262   
 263                  secs = expire_box_find_min_secs(expire.env, str_c(vname),
 264                                                  &altmove);
 265                  if (secs != 0)
 266                          mailbox_expire_hook(box, secs, altmove);
 267          }
 268          return box;
 269  }
Show more  




Change Warning 8072.24632 : Unreachable Call

Priority:
State:
Finding:
Owner:
Note: