Text   |  XML   |  ReML   |   Visible Warnings:

Uninitialized Variable  at mail-cache.c:90

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

mail_cache_init_file_cache

(/home/sate/Testcases/c/cve/dovecot-1.2.0/src/lib-index/mail-cache.c)expand/collapse
Show more  
 76  static void mail_cache_init_file_cache(struct mail_cache *cache)
 77  {
 78          struct stat st;
 79   
 80          if (cache->file_cache == NULL)
 81                  return;
 82   
 83          file_cache_set_fd(cache->file_cache, cache->fd);
 84   
 85          if (fstat(cache->fd, &st) == 0)
 86                  file_cache_set_size(cache->file_cache, st.st_size);
 87          else if (errno != ESTALE)
 88                  mail_cache_set_syscall_error(cache, "fstat()");
 89   
 90          cache->st_ino = st.st_ino;
Show more  




Change Warning 7180.24877 : Uninitialized Variable

Priority:
State:
Finding:
Owner:
Note: