mirror of https://github.com/OISF/suricata
http-json: fix coverity warning
*** CID 1211009: Bad bit shift operation (BAD_SHIFT) /src/output-json-http.c: 265 in JsonHttpLogJSON() 259 /* log custom fields if configured */ 260 if (http_ctx->fields != 0) 261 { 262 HttpField f; 263 for (f = HTTP_FIELD_ACCEPT; f < HTTP_FIELD_SIZE; f++) 264 { >>> CID 1211009: Bad bit shift operation (BAD_SHIFT) >>> In expression "1 << f", left shifting by more than 31 bits has undefined behavior. The shift amount, "f", is as much as 46. 265 if ((http_ctx->fields & (1<<f)) != 0) 266 { 267 /* prevent logging a field twice if extended logging is 268 enabled */ 269 if (((http_ctx->flags & LOG_HTTP_EXTENDED) == 0) || 270 ((http_ctx->flags & LOG_HTTP_EXTENDED) != ________________________________________________________________________________________________________ *** CID 1211010: Bad bit shift operation (BAD_SHIFT) /src/output-json-http.c: 492 in OutputHttpLogInitSub() 486 { 487 if ((strcmp(http_fields[f].config_field, 488 field->val) == 0) || 489 (strcasecmp(http_fields[f].htp_field, 490 field->val) == 0)) 491 { >>> CID 1211010: Bad bit shift operation (BAD_SHIFT) >>> In expression "1 << f", left shifting by more than 31 bits has undefined behavior. The shift amount, "f", is as much as 46. 492 http_ctx->fields |= (1<<f); 493 break; 494 } 495 } 496 } 497 }pull/965/merge
parent
5cdd9b460a
commit
d4215fca84
Loading…
Reference in New Issue