1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-06 15:49:35 +03:00

Make the command-line shell ".dump" command more resilient in the face of

database corruption. (CVS 3496)

FossilOrigin-Name: ebd44f0b5e229b990910bb44565de9a5c06cb5bc
This commit is contained in:
drh
2006-10-31 18:08:27 +00:00
parent 371de5ad8b
commit 2e7568f237
3 changed files with 8 additions and 11 deletions

View File

@@ -12,7 +12,7 @@
** This file contains code to implement the "sqlite" command line
** utility for accessing SQLite databases.
**
** $Id: shell.c,v 1.153 2006/10/27 14:21:54 drh Exp $
** $Id: shell.c,v 1.154 2006/10/31 18:08:28 drh Exp $
*/
#include <stdlib.h>
#include <string.h>
@@ -768,9 +768,6 @@ static int dump_callback(void *pArg, int nArg, char **azArg, char **azCol){
rc = run_table_dump_query(p->out, p->db, zSelect);
}
if( zSelect ) free(zSelect);
if( rc!=SQLITE_OK ){
return 1;
}
}
return 0;
}