Skip to content
Snippets Groups Projects
Commit 0ae35cff authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Fix missing free.

parent 91cbb159
No related branches found
No related tags found
No related merge requests found
......@@ -48,6 +48,8 @@ main()
printf("unexpected crc result: 0x%8" PRIx32"\n", cksum_result);
return EXIT_FAILURE;
}
free(test_data);
free(init_block);
return EXIT_SUCCESS;
}
......
......@@ -58,6 +58,7 @@ int main(int argc, const char **argv)
}
if (countMissingValues)
printf("missing values count = %zu\n", allNmissSum);
free(buf);
streamClose(streamID);
return EXIT_SUCCESS;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment