Browse Source

Fix false positive warning about possibly uninitialised record_bytes_read

master
JustAnotherArchivist 5 months ago
parent
commit
c192e0c5d3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      warc-dump-responses.c

+ 1
- 1
warc-dump-responses.c View File

@@ -32,7 +32,7 @@ int main(int argc, char* argv[]) {
char* m0;
char* m1;
char* eoh;
size_t record_bytes_read;
size_t record_bytes_read = 0;
size_t record_length;
long int nscan;
bool meta = false;


Loading…
Cancel
Save