pmdk
pmdk copied to clipboard
Add information about state #5419
src/tools/pmreorder/statemachine.py
line 388 at r3 (raw file):
Previously, Karolina002 (Karolina Bober) wrote…
Done.
This is list comprehension. Did you encounter any problems with generator expression?
Codecov Report
Merging #5475 (c902f83) into master (776fde6) will increase coverage by
0.00%
. The diff coverage isn/a
.
:exclamation: Current head c902f83 differs from pull request most recent head fc0bdca. Consider uploading reports for the commit fc0bdca to get more accurate results
@@ Coverage Diff @@
## master #5475 +/- ##
=======================================
Coverage 72.20% 72.20%
=======================================
Files 193 193
Lines 30337 30342 +5
=======================================
+ Hits 21904 21909 +5
Misses 8433 8433
src/test/unittest/unittest.h
line 784 at r31 (raw file):
char *token; while ((token = strtok_r(tmp, delim, &tmp))) {
Heh, I should have noticed this bug earlier. strtok_r modifies the last argument, so FREE(tmp) will try to free something other than what was allocated earlier. I wonder why it doesn't blow up now...