1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

:-) (CVS 38)

FossilOrigin-Name: 46c4b792e0a0e61c417f5c1771e013d90d652507
This commit is contained in:
drh
2000-06-02 14:27:22 +00:00
parent bed8690fde
commit df16aed362
5 changed files with 29 additions and 17 deletions

View File

@@ -26,7 +26,7 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
** $Id: main.c,v 1.6 2000/06/02 13:27:59 drh Exp $
** $Id: main.c,v 1.7 2000/06/02 14:27:23 drh Exp $
*/
#include "sqliteInt.h"
@@ -185,7 +185,7 @@ sqlite *sqlite_open(const char *zFilename, int mode, char **pzErrMsg){
sqlite_close(db);
return 0;
}else{
sqliteFree(pzErrMsg);
sqliteFree(*pzErrMsg);
*pzErrMsg = 0;
}
return db;