summaryrefslogtreecommitdiff
path: root/storage/pbxt/src
diff options
context:
space:
mode:
authorMichael Widenius <monty@askmonty.org>2011-02-28 23:24:19 +0200
committerMichael Widenius <monty@askmonty.org>2011-02-28 23:24:19 +0200
commit8fa14ba6e6c6e7360d0799d703a5af26e2c2c61f (patch)
tree75980cadd9828e2e2a062fd487670cbf759e72fe /storage/pbxt/src
parent5df39c48f86639c76f14ae54baf805d2324afd37 (diff)
downloadmariadb-git-8fa14ba6e6c6e7360d0799d703a5af26e2c2c61f.tar.gz
Get rid of compiler warnings
mysql-test/suite/parts/t/partition_alter4_innodb.test: Removed duplicated big_test marker sql-common/my_time.c: Get rid of compiler warning about uninitialized members
Diffstat (limited to 'storage/pbxt/src')
-rw-r--r--storage/pbxt/src/table_xt.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/pbxt/src/table_xt.cc b/storage/pbxt/src/table_xt.cc
index 30b844a9184..35b4ea3be3d 100644
--- a/storage/pbxt/src/table_xt.cc
+++ b/storage/pbxt/src/table_xt.cc
@@ -726,7 +726,7 @@ xtPublic void xt_check_tables(XTThreadPtr self)
{
u_int edx;
XTTableEntryPtr te_ptr;
- volatile XTTableHPtr tab;
+ volatile XTTableHPtr tab= 0;
char path[PATH_MAX];
enter_();
@@ -1132,7 +1132,7 @@ static int tab_new_handle(XTThreadPtr self, XTTableHPtr *r_tab, XTDatabaseHPtr d
XTOpenFilePtr of_rec, of_ind;
XTTableEntryPtr te_ptr;
size_t tab_format_offset;
- size_t tab_head_size;
+ size_t tab_head_size= 0;
enter_();