Text   |  XML   |  ReML   |   Visible Warnings:

Unused Value  at hmac-md5.c:75

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

hmac_md5_get_cram_context

(/home/sate/Testcases/c/cve/dovecot-1.2.0/src/lib/hmac-md5.c)expand/collapse
Show more  
 56  void hmac_md5_get_cram_context(struct hmac_md5_context *ctx,
 57                          unsigned char context_digest[CRAM_MD5_CONTEXTLEN])
 58  {
 59          unsigned char *cdp;
 60   
 61  #define CDPUT(p, c) STMT_START {   \
 62          *(p)++ = (c) & 0xff;       \
 63          *(p)++ = (c) >> 8 & 0xff;  \
 64          *(p)++ = (c) >> 16 & 0xff; \
 65          *(p)++ = (c) >> 24 & 0xff; \
 66  } STMT_END 
 67          cdp = context_digest;
 68          CDPUT(cdp, ctx->ctxo.a);
 69          CDPUT(cdp, ctx->ctxo.b);
 70          CDPUT(cdp, ctx->ctxo.c);
 71          CDPUT(cdp, ctx->ctxo.d);
 72          CDPUT(cdp, ctx->ctx.a);
 73          CDPUT(cdp, ctx->ctx.b);
 74          CDPUT(cdp, ctx->ctx.c);
 75          CDPUT(cdp, ctx->ctx.d);
 76  }
Show more  




Change Warning 7093.24383 : Unused Value

Priority:
State:
Finding:
Owner:
Note: