Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(207)

Unified Diff: third_party/sqlite/src/ext/misc/vtshim.c

Issue 2751253002: [sql] Import SQLite 3.17.0. (Closed)
Patch Set: also clang on Linux i386 Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/sqlite/src/ext/misc/vfsstat.c ('k') | third_party/sqlite/src/ext/rbu/rbu.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/ext/misc/vtshim.c
diff --git a/third_party/sqlite/src/ext/misc/vtshim.c b/third_party/sqlite/src/ext/misc/vtshim.c
index 01348e8d3eebbfe3161c0b55dd6cbc3d448ea161..0709a26a7f16a6969dddbd4a28eb4670eedea316 100644
--- a/third_party/sqlite/src/ext/misc/vtshim.c
+++ b/third_party/sqlite/src/ext/misc/vtshim.c
@@ -95,6 +95,7 @@ static int vtshimCreate(
if( rc ){
sqlite3_free(pNew);
*ppVtab = 0;
+ return rc;
}
pNew->pAux = pAux;
pNew->ppPrev = &pAux->pAllVtab;
@@ -133,6 +134,7 @@ static int vtshimConnect(
if( rc ){
sqlite3_free(pNew);
*ppVtab = 0;
+ return rc;
}
pNew->pAux = pAux;
pNew->ppPrev = &pAux->pAllVtab;
« no previous file with comments | « third_party/sqlite/src/ext/misc/vfsstat.c ('k') | third_party/sqlite/src/ext/rbu/rbu.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698