diff options
author | drh <drh@noemail.net> | 2017-01-31 16:34:51 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2017-01-31 16:34:51 +0000 |
commit | 78a9e92ecf15afb4a3550c8bb8f998928fae3314 (patch) | |
tree | b16035cdde8beea7fb2b48d713bf7b54c16b8610 /src | |
parent | 9dc7ad1d7e1286fe0d3d30117adae154c6abf6de (diff) | |
download | sqlite-78a9e92ecf15afb4a3550c8bb8f998928fae3314.tar.gz sqlite-78a9e92ecf15afb4a3550c8bb8f998928fae3314.zip |
Remove an unnecessary initialization of the pOp variable in sqlite3VdbeExec().
FossilOrigin-Name: 02f6293f278f7b0a0f4876f5c6a0f4dc42620d79
Diffstat (limited to 'src')
-rw-r--r-- | src/vdbe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vdbe.c b/src/vdbe.c index 0e3a6f5ba..c6918c5f2 100644 --- a/src/vdbe.c +++ b/src/vdbe.c @@ -562,7 +562,7 @@ int sqlite3VdbeExec( Vdbe *p /* The VDBE */ ){ Op *aOp = p->aOp; /* Copy of p->aOp */ - Op *pOp = aOp; /* Current operation */ + Op *pOp; /* Current operation */ #if defined(SQLITE_DEBUG) || defined(VDBE_PROFILE) Op *pOrigOp; /* Value of pOp at the top of the loop */ #endif |