diff options
author | drh <drh@noemail.net> | 2020-01-17 23:27:41 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2020-01-17 23:27:41 +0000 |
commit | 2d58b7f40f38519b9fdff0f604d19c4b39ae0008 (patch) | |
tree | 8a798f527e577383a5fbde6de9ba65f2c90ae589 /src | |
parent | 929a9406785cc0a5cdea6a4943e89bd84474efa1 (diff) | |
download | sqlite-2d58b7f40f38519b9fdff0f604d19c4b39ae0008.tar.gz sqlite-2d58b7f40f38519b9fdff0f604d19c4b39ae0008.zip |
Fix a typo in a comment. No code changes.
FossilOrigin-Name: 4363f69c3ad5a9859471547cab713f1acabd5fce13872cc1ddaa972d6c1dfb35
Diffstat (limited to 'src')
-rw-r--r-- | src/build.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/build.c b/src/build.c index f0435aace..a7dc36ff5 100644 --- a/src/build.c +++ b/src/build.c @@ -2268,8 +2268,8 @@ void sqlite3EndTable( ** expression to a NULL. This prevents code generators that operate ** on the expression from inserting extra parts into the expression ** tree that have been allocated from lookaside memory, which is - ** illegal in a schema and will lead to errors heap corruption when - ** the database connection closes. */ + ** illegal in a schema and will lead to errors or heap corruption + ** when the database connection closes. */ sqlite3ExprDelete(db, pX); p->aCol[ii].pDflt = sqlite3ExprAlloc(db, TK_NULL, 0, 0); } |