Differences From Artifact [4b4c8232e1]:
- File src/import.c — part of check-in [4566da665d] at 2019-12-19 18:54:12 on branch memleak-fixes — Several memleak fixes reported via https://fossil-scm.org/forum/forumpost/205b004d8a. In a branch so the OP can test them in his setup. (user: stephan size: 63038)
To Artifact [f4862b1b07]:
- File src/import.c — part of check-in [252ca35f47] at 2019-12-19 20:41:30 on branch memleak-fixes — Clean up g.non-const zXYZ members in the atexit handler. Add a blob_reset() in finish_tag() to cover the case that fast_insert_content() does not reset it. (user: stephan size: 63063)
| ︙ | |||
224 225 226 227 228 229 230 231 232 233 234 235 236 237 | 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 | + |
blob_appendf(&record, " %F", gg.zComment);
}
blob_appendf(&record, "\nU %F\n", gg.zUser);
md5sum_blob(&record, &cksum);
blob_appendf(&record, "Z %b\n", &cksum);
fast_insert_content(&record, 0, 0, 1);
blob_reset(&cksum);
blob_reset(&record);
}
import_reset(0);
}
/*
** Compare two ImportFile objects for sorting
*/
|
| ︙ |