summaryrefslogtreecommitdiffstats
path: root/src/H5SMcache.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-01-03 19:22:48 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-01-03 19:22:48 (GMT)
commit91fe7912391201929f2b267f2454357d10b97b0b (patch)
tree3972c7070c03277da67601948282fa2b164b2de8 /src/H5SMcache.c
parent11af96e8677f8d22a3bacb745eee09576fdb9eec (diff)
downloadhdf5-91fe7912391201929f2b267f2454357d10b97b0b.zip
hdf5-91fe7912391201929f2b267f2454357d10b97b0b.tar.gz
hdf5-91fe7912391201929f2b267f2454357d10b97b0b.tar.bz2
[svn-r13103] Description:
Bump table buf size to reflect current reality (and avoid smashing the stack :-) Tested on: Linux/32 2.6 (chicago) Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5SMcache.c')
-rw-r--r--src/H5SMcache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5SMcache.c b/src/H5SMcache.c
index 78b5033..1f2d0d0 100644
--- a/src/H5SMcache.c
+++ b/src/H5SMcache.c
@@ -43,7 +43,7 @@
/****************/
/* Local Macros */
/****************/
-#define H5F_TABLEBUF_SIZE H5SM_TABLE_SIZEOF_MAGIC + 20 + (H5SM_MAX_NINDEXES * 26)
+#define H5F_TABLEBUF_SIZE H5SM_TABLE_SIZEOF_MAGIC + 20 + (H5SM_MAX_NINDEXES * 29)
/* JAMES: should this change according to address size? */
#define H5F_LISTBUF_SIZE H5SM_LIST_SIZEOF_MAGIC + H5SM_MAX_LIST_ELEMS * 16