aboutsummaryrefslogtreecommitdiff
path: root/src/malloc.c
diff options
context:
space:
mode:
authordan <Dan Kennedy>2022-12-05 18:26:37 +0000
committerdan <Dan Kennedy>2022-12-05 18:26:37 +0000
commit77e171e8fa536f47f7a5108d7b8b5d88fc01ae05 (patch)
tree34037f08500bc7bc8f1b5b2879043593096de692 /src/malloc.c
parenta3d0c158a0e5942a2cfbfa05b1c1a629ed230ed0 (diff)
parent49d402684b86e0f49264b5fbbe1d0ca2e7f64b93 (diff)
downloadsqlite-77e171e8fa536f47f7a5108d7b8b5d88fc01ae05.tar.gz
sqlite-77e171e8fa536f47f7a5108d7b8b5d88fc01ae05.zip
Merge latest trunk changes.
FossilOrigin-Name: 1a72777b1279f74f212fb2f675a4594a238e5d28f048879d7f5ad5287673c3c4
Diffstat (limited to 'src/malloc.c')
-rw-r--r--src/malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/malloc.c b/src/malloc.c
index 68d9f5f55..48c460060 100644
--- a/src/malloc.c
+++ b/src/malloc.c
@@ -279,7 +279,7 @@ static void mallocWithAlarm(int n, void **pp){
** The upper bound is slightly less than 2GiB: 0x7ffffeff == 2,147,483,391
** This provides a 256-byte safety margin for defense against 32-bit
** signed integer overflow bugs when computing memory allocation sizes.
-** Parnoid applications might want to reduce the maximum allocation size
+** Paranoid applications might want to reduce the maximum allocation size
** further for an even larger safety margin. 0x3fffffff or 0x0fffffff
** or even smaller would be reasonable upper bounds on the size of a memory
** allocations for most applications.