summaryrefslogtreecommitdiff
path: root/innobase
diff options
context:
space:
mode:
authorunknown <heikki@hundin.mysql.fi>2002-07-26 18:25:16 +0300
committerunknown <heikki@hundin.mysql.fi>2002-07-26 18:25:16 +0300
commit48e8ed29ebbd0846e0c32a94be0413902d7d9198 (patch)
tree55c2123e984c00dac79f8f0f5ddd2e084e6eddc7 /innobase
parentcdddb960be6251fedc6d0f8c2309d898039d7a7b (diff)
downloadmariadb-git-48e8ed29ebbd0846e0c32a94be0413902d7d9198.tar.gz
dyn0dyn.ic, dyn0dyn.h:
Backport the AIX crash fix changes from 4.0 innobase/include/dyn0dyn.h: Backport the AIX crash fix changes from 4.0 innobase/include/dyn0dyn.ic: Backport the AIX crash fix changes from 4.0
Diffstat (limited to 'innobase')
-rw-r--r--innobase/include/dyn0dyn.h2
-rw-r--r--innobase/include/dyn0dyn.ic4
2 files changed, 4 insertions, 2 deletions
diff --git a/innobase/include/dyn0dyn.h b/innobase/include/dyn0dyn.h
index 0952a8b4647..6f08da1533b 100644
--- a/innobase/include/dyn0dyn.h
+++ b/innobase/include/dyn0dyn.h
@@ -17,7 +17,7 @@ typedef struct dyn_block_struct dyn_block_t;
typedef dyn_block_t dyn_array_t;
-/* Initial 'payload' size in bytes in a dynamic array block */
+/* This must be > MLOG_BUF_MARGIN + 30 */
#define DYN_ARRAY_DATA_SIZE 512
/*************************************************************************
diff --git a/innobase/include/dyn0dyn.ic b/innobase/include/dyn0dyn.ic
index dc004efbb8b..787615cae09 100644
--- a/innobase/include/dyn0dyn.ic
+++ b/innobase/include/dyn0dyn.ic
@@ -185,7 +185,8 @@ dyn_array_open(
/*===========*/
/* out: pointer to the buffer */
dyn_array_t* arr, /* in: dynamic array */
- ulint size) /* in: size in bytes of the buffer */
+ ulint size) /* in: size in bytes of the buffer; MUST be
+ smaller than DYN_ARRAY_DATA_SIZE! */
{
dyn_block_t* block;
ulint used;
@@ -207,6 +208,7 @@ dyn_array_open(
if (used + size > DYN_ARRAY_DATA_SIZE) {
block = dyn_array_add_block(arr);
used = block->used;
+ ut_a(size <= DYN_ARRAY_DATA_SIZE);
}
}