1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

fix typo in comment (CVS 4438)

FossilOrigin-Name: c2ac43a4ef674c0202d5bd1ec57fc25c89d0554e
This commit is contained in:
rse
2007-09-20 11:32:18 +00:00
parent 777b17af7e
commit b72e88d71c
3 changed files with 10 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
C Fixes\sfor\suninitialized\svariables.\s\sTickets\s#2658\sand\s#2659.\s(CVS\s4437) C fix\stypo\sin\scomment\s(CVS\s4438)
D 2007-09-20T10:02:54 D 2007-09-20T11:32:18
F Makefile.in cbfb898945536a8f9ea8b897e1586dd1fdbcc5db F Makefile.in cbfb898945536a8f9ea8b897e1586dd1fdbcc5db
F Makefile.linux-gcc 65241babba6faf1152bf86574477baab19190499 F Makefile.linux-gcc 65241babba6faf1152bf86574477baab19190499
F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@@ -172,7 +172,7 @@ F src/vdbeaux.c e35c851e3c1d18a7b90dbe35ae5e0fc9419a4ed4
F src/vdbeblob.c 82f51cdf9b0c0af729732fde48c824e498c0a1ca F src/vdbeblob.c 82f51cdf9b0c0af729732fde48c824e498c0a1ca
F src/vdbefifo.c 334c838c8f42d61a94813d136019ee566b5dc2f6 F src/vdbefifo.c 334c838c8f42d61a94813d136019ee566b5dc2f6
F src/vdbemem.c 246d434fa60bde6553490eb686adfd86adcd6712 F src/vdbemem.c 246d434fa60bde6553490eb686adfd86adcd6712
F src/vtab.c 243f41bd94a710e8d1eb30f0abfe6d0889538e71 F src/vtab.c f819d55ef638d45e09ce00009d435da8bf16f528
F src/where.c 44042c8b9d0d054cc318c3a0df052215ebf49d2d F src/where.c 44042c8b9d0d054cc318c3a0df052215ebf49d2d
F tclinstaller.tcl 4356d9d94d2b5ed5e68f9f0c80c4df3048dd7617 F tclinstaller.tcl 4356d9d94d2b5ed5e68f9f0c80c4df3048dd7617
F test/aggerror.test a867e273ef9e3d7919f03ef4f0e8c0d2767944f2 F test/aggerror.test a867e273ef9e3d7919f03ef4f0e8c0d2767944f2
@@ -580,7 +580,7 @@ F www/tclsqlite.tcl 8be95ee6dba05eabcd27a9d91331c803f2ce2130
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
F www/whentouse.tcl fc46eae081251c3c181bd79c5faef8195d7991a5 F www/whentouse.tcl fc46eae081251c3c181bd79c5faef8195d7991a5
P 91831ff2922666b39d8f4ba448982c6763030633 P 27fe1288336665c4d47c5d7ddcbeacc451ec4a9d
R b3e2e386d4621bf8e0cec5124924d72e R 64f1097aed00a79a87dd233f0bca675a
U drh U rse
Z bfc1344953fd378c8e37f74827865187 Z 6f6d5df99d60b533b39077f06f479aff

View File

@@ -1 +1 @@
27fe1288336665c4d47c5d7ddcbeacc451ec4a9d c2ac43a4ef674c0202d5bd1ec57fc25c89d0554e

View File

@@ -11,7 +11,7 @@
************************************************************************* *************************************************************************
** This file contains code used to help implement virtual tables. ** This file contains code used to help implement virtual tables.
** **
** $Id: vtab.c,v 1.58 2007/09/20 10:02:54 drh Exp $ ** $Id: vtab.c,v 1.59 2007/09/20 11:32:18 rse Exp $
*/ */
#ifndef SQLITE_OMIT_VIRTUALTABLE #ifndef SQLITE_OMIT_VIRTUALTABLE
#include "sqliteInt.h" #include "sqliteInt.h"
@@ -765,7 +765,7 @@ FuncDef *sqlite3VtabOverloadFunction(
pMod = (sqlite3_module *)pVtab->pModule; pMod = (sqlite3_module *)pVtab->pModule;
if( pMod->xFindFunction==0 ) return pDef; if( pMod->xFindFunction==0 ) return pDef;
/* Call the xFuncFunction method on the virtual table implementation /* Call the xFindFunction method on the virtual table implementation
** to see if the implementation wants to overload this function ** to see if the implementation wants to overload this function
*/ */
zLowerName = sqlite3DbStrDup(db, pDef->zName); zLowerName = sqlite3DbStrDup(db, pDef->zName);