Skip Menu |

This queue is for tickets about the Compress-Raw-Zlib CPAN distribution.

Report information
The Basics
Id: 123782
Status: open
Priority: 0/
Queue: Compress-Raw-Zlib

People
Owner: Nobody in particular
Requestors: JHI [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Coverity #157566: Nesting level does not match indentation
deflate.c: 598 if (s->level == 0 && s->matches != 0) { parent: This 'if' statement is the parent, indented to column 13. 599 if (s->matches == 1) 600 slide_hash(s); 601 else CID 157566 (#1 of 1): Nesting level does not match indentation (NESTING_INDENT_MISMATCH) multi_stmt_macro: The macro on this line expands into multiple statements, only the first of which is nested within the preceding parent while the rest are not. If all statements resulting from the macro expansion are intended to be nested under the parent then either braces ('{' '}') need to be used around the macro use here or braces need to be added to the macro definition. 602 CLEAR_HASH(s);