Text   |  XML   |  ReML   |   Visible Warnings:

Unreachable Call  at unichar.c:101

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

uni_utf8_to_ucs4

(/home/sate/Testcases/c/cve/dovecot-1.2.0/src/lib/unichar.c)expand/collapse
Show more  
 96  int uni_utf8_to_ucs4(const char *input, ARRAY_TYPE(unichars) *output)
 97  {
 98          unichar_t chr;
 99   
 100          while (*input != '\0') {
 101                  if (uni_utf8_get_char(input, &chr) <= 0) {
 102                          /* invalid input */
 103                          return -1;
 104                  }
 105                  input += uni_utf8_char_bytes(*input);
 106   
 107                  array_append(output, &chr, 1);
 108          }
 109          return 0;
 110  }
Show more  




Change Warning 7143.24581 : Unreachable Call

Priority:
State:
Finding:
Owner:
Note: