1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-19 21:43:15 +03:00

Fix an out of date comment on sqlite3ArrayAllocate().

FossilOrigin-Name: 4afdd5ae53ef0ff7c0fde74eaa04638c923c679b
This commit is contained in:
dan
2012-03-29 07:51:45 +00:00
parent c461a455c4
commit 9ace112c84
3 changed files with 20 additions and 18 deletions

View File

@@ -1,5 +1,5 @@
C Avoid\sloading\soverflow\spages\sjust\sto\ssatisfy\stypeof()\sor\slength()\sfunctions\nif\sthe\scorrect\sresult\scan\sbe\scomputed\swithout\sthe\sextra\spage\sfetches. C Fix\san\sout\sof\sdate\scomment\son\ssqlite3ArrayAllocate().
D 2012-03-28T16:22:03.615 D 2012-03-29T07:51:45.964
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
F Makefile.in 2f37e468503dbe79d35c9f6dffcf3fae1ae9ec20 F Makefile.in 2f37e468503dbe79d35c9f6dffcf3fae1ae9ec20
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -128,7 +128,7 @@ F src/btmutex.c 976f45a12e37293e32cae0281b15a21d48a8aaa7
F src/btree.c 02aeee1f6d425e11f7b9b2d9d461ac501645ed6f F src/btree.c 02aeee1f6d425e11f7b9b2d9d461ac501645ed6f
F src/btree.h 48a013f8964f12d944d90e4700df47b72dd6d923 F src/btree.h 48a013f8964f12d944d90e4700df47b72dd6d923
F src/btreeInt.h 26d8ca625b141927fe6620c1d2cf58eaf494ca0c F src/btreeInt.h 26d8ca625b141927fe6620c1d2cf58eaf494ca0c
F src/build.c c4d36e527f457f9992a6663365871dfa7c5094b8 F src/build.c 139dc386ebdaa78d2198247ebcf003305a5babe3
F src/callback.c 0425c6320730e6d3981acfb9202c1bed9016ad1a F src/callback.c 0425c6320730e6d3981acfb9202c1bed9016ad1a
F src/complete.c dc1d136c0feee03c2f7550bafc0d29075e36deac F src/complete.c dc1d136c0feee03c2f7550bafc0d29075e36deac
F src/ctime.c a9c26822515f81ec21588cbb482ca6724be02e33 F src/ctime.c a9c26822515f81ec21588cbb482ca6724be02e33
@@ -993,7 +993,7 @@ F tool/tostr.awk e75472c2f98dd76e06b8c9c1367f4ab07e122d06
F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
F tool/warnings-clang.sh 9f406d66e750e8ac031c63a9ef3248aaa347ef2a F tool/warnings-clang.sh 9f406d66e750e8ac031c63a9ef3248aaa347ef2a
F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381 F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381
P d95f9fb713c7ba4e570556d835fbd77e574afdea 868394761e41b7483a5874426ee052dfb3a9e2be P 0733c98c329bc9942460746e9bbaf4b4c94c1520
R 14c36b139bb9a241f9fc5fc1fa96e28f R cdd95431de81f865d03de0c1a140cd52
U drh U dan
Z 15a5058e7b3160b8bbe377cfe96ccfbc Z 5c9d2afc31444fe45f09b85b23502baf

View File

@@ -1 +1 @@
0733c98c329bc9942460746e9bbaf4b4c94c1520 4afdd5ae53ef0ff7c0fde74eaa04638c923c679b

View File

@@ -3040,19 +3040,21 @@ exit_drop_index:
} }
/* /*
** pArray is a pointer to an array of objects. Each object in the ** pArray is a pointer to an array of objects. Each object in the
** array is szEntry bytes in size. This routine allocates a new ** array is szEntry bytes in size. This routine uses sqlite3DbRealloc()
** object on the end of the array. ** to extend the array so that there is space for a new object at the end.
** **
** *pnEntry is the number of entries already in use. *pnAlloc is ** When this function is called, *pnEntry contains the current size of
** the previously allocated size of the array. initSize is the ** the array (in entries - so the allocation is ((*pnEntry) * szEntry) bytes
** suggested initial array size allocation. ** in total).
** **
** The index of the new entry is returned in *pIdx. ** If the realloc() is successful (i.e. if no OOM condition occurs), the
** space allocated for the new object is zeroed, *pnEntry updated to
** reflect the new size of the array and a pointer to the new allocation
** returned. *pIdx is set to the index of the new array entry in this case.
** **
** This routine returns a pointer to the array of objects. This ** Otherwise, if the realloc() fails, *pIdx is set to -1, *pnEntry remains
** might be the same as the pArray parameter or it might be a different ** unchanged and a copy of pArray returned.
** pointer if the array was resized.
*/ */
void *sqlite3ArrayAllocate( void *sqlite3ArrayAllocate(
sqlite3 *db, /* Connection to notify of malloc failures */ sqlite3 *db, /* Connection to notify of malloc failures */