Text   |  XML   |  ReML   |   Visible Warnings:

Unused Value  at strfuncs.c:309

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

i_strocpy

(/home/sate/Testcases/c/cve/dovecot-1.2.0/src/lib/strfuncs.c)expand/collapse
Show more  
 299  int i_strocpy(char *dest, const char *src, size_t dstsize)
 300  {
 301          if (dstsize == 0)
 302                  return -1;
 303   
 304          while (*src != '\0' && dstsize > 1) {
 305                  *dest++ = *src++;
 306                  dstsize--;
 307          }
 308   
 309          *dest++ = '\0';
 310          return *src == '\0' ? 0 : -1;
 311  }
Show more  




Change Warning 7097.24378 : Unused Value

Priority:
State:
Finding:
Owner:
Note: