Text   |  XML   |  ReML   |   Visible Warnings:

Uninitialized Variable  at commands.c:106

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

cmd_dele

(/home/sate/Testcases/c/cve/dovecot-1.2.0/src/pop3/commands.c)expand/collapse
Show more  
 94  static int cmd_dele(struct client *client, const char *args)
 95  {
 96          unsigned int msgnum;
 97   
 98[+]         if (get_msgnum(client, args, &msgnum) == NULL)
 99                  return -1;
 100   
 101          if (!client->deleted) {
 102[+]                 client->deleted_bitmask = i_malloc(MSGS_BITMASK_SIZE(client));
 103                  client->deleted = TRUE;
 104          }
 105   
 106          client->deleted_bitmask[msgnum / CHAR_BIT] |= 1 << (msgnum % CHAR_BIT);
Show more  




Change Warning 7894.24759 : Uninitialized Variable

Priority:
State:
Finding:
Owner:
Note: