Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fix for compiler complaint about uninitialized var
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcus Ilgner committed May 24, 2013
1 parent bc8b2ef commit 48bddb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SQLite3Component/sqlite3.c
Original file line number Diff line number Diff line change
Expand Up @@ -128338,7 +128338,7 @@ static int fts3tokConnectMethod(
sqlite3_vtab **ppVtab, /* OUT: New sqlite3_vtab object */
char **pzErr /* OUT: sqlite3_malloc'd error message */
){
Fts3tokTable *pTab;
Fts3tokTable *pTab = 0;
const sqlite3_tokenizer_module *pMod = 0;
sqlite3_tokenizer *pTok = 0;
int rc;
Expand Down

0 comments on commit 48bddb0

Please sign in to comment.