mirror of
				https://github.com/sqlite/sqlite.git
				synced 2025-11-03 16:53:36 +03:00 
			
		
		
		
	Fix a memory leak in the shell that occurs when a ".import" command fails.
Ticket #3517 (CVS 5975) FossilOrigin-Name: cb9c15431c53b13b70d006d8c47741ebc1caaca3
This commit is contained in:
		@@ -12,7 +12,7 @@
 | 
			
		||||
** This file contains code to implement the "sqlite" command line
 | 
			
		||||
** utility for accessing SQLite databases.
 | 
			
		||||
**
 | 
			
		||||
** $Id: shell.c,v 1.188 2008/11/17 08:05:32 chw Exp $
 | 
			
		||||
** $Id: shell.c,v 1.189 2008/12/04 12:26:01 drh Exp $
 | 
			
		||||
*/
 | 
			
		||||
#include <stdlib.h>
 | 
			
		||||
#include <string.h>
 | 
			
		||||
@@ -1270,6 +1270,7 @@ static int do_meta_command(char *zLine, struct callback_data *p){
 | 
			
		||||
        fprintf(stderr,"%s line %d: expected %d columns of data but found %d\n",
 | 
			
		||||
           zFile, lineno, nCol, i+1);
 | 
			
		||||
        zCommit = "ROLLBACK";
 | 
			
		||||
        free(zLine);
 | 
			
		||||
        break;
 | 
			
		||||
      }
 | 
			
		||||
      for(i=0; i<nCol; i++){
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user