Differences From Artifact [a4cdfce824]:
- File src/blob.c — part of check-in [702331e057] at 2015-05-18 13:56:48 on branch trunk — Fix the empty-dirs property so that creates the complete path of directories, not just leaves, and so that it does not leak memory. (user: drh size: 32148) [more...]
To Artifact [0d539a6e5c]:
- File src/blob.c — part of check-in [4742716fc1] at 2015-05-19 19:22:08 on branch trunk — Revert [48499514cc], changing nUsed to zero is not redundant as blob_append() changes it to one. (user: mistachkin size: 32193) [more...]
︙ | |||
298 299 300 301 302 303 304 | 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 | - + + | /* ** Return a pointer to a null-terminated string for a blob. */ char *blob_str(Blob *p){ blob_is_init(p); if( p->nUsed==0 ){ |
︙ |