Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add a missing "closedir()". |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
15adeb2f9a1b0b8c5a8e67ff779b9d0a |
User & Date: | drh 2014-12-10 22:06:55.737 |
Context
2016-07-11
| ||
19:21 | Add support for encrypted SQL archives using the SQLite Encryption Extension. check-in: 06c26c027e user: drh tags: trunk | |
2014-12-10
| ||
22:06 | Add a missing "closedir()". check-in: 15adeb2f9a user: drh tags: trunk | |
2014-08-15
| ||
19:01 | Update the built-in SQLite to version 3.8.6. check-in: 95ee3b3708 user: drh tags: trunk | |
Changes
Changes to sqlar.c.
︙ | ︙ | |||
321 322 323 324 325 326 327 328 329 330 331 332 333 334 | if( strcmp(pEntry->d_name,".")==0 || strcmp(pEntry->d_name,"..")==0 ){ continue; } zSubpath = sqlite3_mprintf("%s/%s", zFilename, pEntry->d_name); add_file(zSubpath, verboseFlag, noCompress); sqlite3_free(zSubpath); } } } } /* ** List of command-line arguments */ | > | 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 | if( strcmp(pEntry->d_name,".")==0 || strcmp(pEntry->d_name,"..")==0 ){ continue; } zSubpath = sqlite3_mprintf("%s/%s", zFilename, pEntry->d_name); add_file(zSubpath, verboseFlag, noCompress); sqlite3_free(zSubpath); } closedir(d); } } } /* ** List of command-line arguments */ |
︙ | ︙ |