diff options
author | acurtis/antony@ltamd64.xiphis.org <> | 2007-05-04 23:35:14 -0700 |
---|---|---|
committer | acurtis/antony@ltamd64.xiphis.org <> | 2007-05-04 23:35:14 -0700 |
commit | a4dbc0990cc2f89a1b7f256f6d1d838f25f070c4 (patch) | |
tree | 56b4a36694de3fd3fdb494ae00d38cd3f38d7c3d /sql/rpl_utility.h | |
parent | 5558019733b64303837c6428a215d69f21bdf971 (diff) | |
parent | 0f0ef2fe14dd3082808b767abb6a995f255183c5 (diff) | |
download | mariadb-git-a4dbc0990cc2f89a1b7f256f6d1d838f25f070c4.tar.gz |
Merge xiphis.org:/home/antony/work2/mysql-5.1-engines
into xiphis.org:/home/antony/work2/mysql-5.1-engines.merge
Diffstat (limited to 'sql/rpl_utility.h')
-rw-r--r-- | sql/rpl_utility.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/rpl_utility.h b/sql/rpl_utility.h index 17879a9ecfc..82992eec690 100644 --- a/sql/rpl_utility.h +++ b/sql/rpl_utility.h @@ -59,7 +59,7 @@ public: @param size Number of elements in array 'types' */ table_def(field_type *types, my_size_t size) - : m_type(new unsigned char [size]), m_size(size) + : m_size(size), m_type(new unsigned char [size]) { if (m_type) memcpy(m_type, types, size); |