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

Unified Diff: third_party/sqlite/src/src/func.c

Issue 885473002: [sql] Rewrite sqlite patching "system". (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed typo in readme. Created 5 years, 11 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/main.mk ('k') | third_party/sqlite/src/src/main.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/src/func.c
diff --git a/third_party/sqlite/src/src/func.c b/third_party/sqlite/src/src/func.c
index ed6a1e809f11035cf5d6ff3b2d5d0312304228e3..6a4f7c09c3d5b315464c61152c861d1f38fba984 100644
--- a/third_party/sqlite/src/src/func.c
+++ b/third_party/sqlite/src/src/func.c
@@ -1114,7 +1114,7 @@ static void trimFunc(
}
}
if( zCharSet ){
- sqlite3_free((void*)azChar);
+ sqlite3_free(azChar);
}
}
sqlite3_result_text(context, (char*)zIn, nIn, SQLITE_TRANSIENT);
« no previous file with comments | « third_party/sqlite/src/main.mk ('k') | third_party/sqlite/src/src/main.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698