aboutsummaryrefslogtreecommitdiff
path: root/src/expr.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2003-01-14 02:49:27 +0000
committerdrh <drh@noemail.net>2003-01-14 02:49:27 +0000
commit77ad4e41337978c1d8f58d5083f1f59df7e6b41d (patch)
tree274f309f6892d51c5c2005371febfb24d8ae1837 /src/expr.c
parent71602204958fade6e9b83448a72438aad0888235 (diff)
downloadsqlite-77ad4e41337978c1d8f58d5083f1f59df7e6b41d.tar.gz
sqlite-77ad4e41337978c1d8f58d5083f1f59df7e6b41d.zip
More tests of the sqlite_set_authorizer() API together with fixes for bugs
that the new tests uncovered. (CVS 832) FossilOrigin-Name: cc2ae781ac186f9ee1afacdc9117087421955369
Diffstat (limited to 'src/expr.c')
-rw-r--r--src/expr.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/expr.c b/src/expr.c
index 5fcfd8833..e56d05e3f 100644
--- a/src/expr.c
+++ b/src/expr.c
@@ -12,7 +12,7 @@
** This file contains routines used for analyzing expressions and
** for generating VDBE code that evaluates expressions in SQLite.
**
-** $Id: expr.c,v 1.84 2003/01/12 18:02:18 drh Exp $
+** $Id: expr.c,v 1.85 2003/01/14 02:49:28 drh Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -430,7 +430,6 @@ int sqliteExprResolveIds(
case TK_ID: {
int cnt = 0; /* Number of matches */
int i; /* Loop counter */
- int rc; /* Return code */
char *z;
assert( pExpr->token.z );
z = sqliteStrNDup(pExpr->token.z, pExpr->token.n);