Text   |  XML   |  ReML   |   Visible Warnings:

Ignored Return Value  at imap-quote.c:101

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

imap_quote

(/home/sate/Testcases/c/cve/dovecot-1.2.0/src/lib-imap/imap-quote.c)expand/collapse
Show more  
 91  const char *imap_quote(pool_t pool, const unsigned char *value,
 92                         size_t value_len)
 93  {
 94          string_t *str;
 95          char *ret;
 96   
 97          if (value == NULL)
 98                  return "NIL";
 99   
 100          if (!pool->datastack_pool)
 101                  t_push();
 102   
 103          str = t_str_new(value_len + MAX_INT_STRLEN + 5);
 104          imap_quote_append(str, value, value_len, TRUE);
 105          ret = p_strndup(pool, str_data(str), str_len(str));
 106   
 107          if (!pool->datastack_pool)
 108                  t_pop();
 109          return ret;
 110  }
Show more  




Change Warning 12176.26081 : Ignored Return Value

Priority:
State:
Finding:
Owner:
Note: