1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Fixed uninitialized variable

Fixed error messages
This commit is contained in:
monty@mysql.com
2004-08-24 01:08:48 +03:00
parent f585ccb2ab
commit 7ff0cef3f1
24 changed files with 24 additions and 24 deletions

View File

@@ -3281,7 +3281,7 @@ copy_data_between_tables(TABLE *from,TABLE *to,
ha_rows *deleted)
{
int error;
Copy_field *copy,*copy_end, *next_field;
Copy_field *copy,*copy_end, *next_field= 0;
ulong found_count,delete_count;
THD *thd= current_thd;
uint length;