1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-11 01:42:22 +03:00

Remove a completely unnecessary memset() from the INSERT code generator.

FossilOrigin-Name: 7d58836b9db1293a3a6581af4358b7c91a588efd5c9b2df384803f3855ff87a8
This commit is contained in:
drh
2017-05-31 13:27:15 +00:00
parent b8a1290a28
commit d5bdd5effb
3 changed files with 7 additions and 8 deletions

View File

@@ -521,7 +521,6 @@ void sqlite3Insert(
#endif
db = pParse->db;
memset(&dest, 0, sizeof(dest));
if( pParse->nErr || db->mallocFailed ){
goto insert_cleanup;
}