From 4ddc4051a1c7f3281a2c501fb20c1a80c8e88a5e Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 18 Jan 2007 10:34:50 -0500 Subject: [PATCH] Bug#25408 5.1 Can't compile on Windows - DBUG_ENTER must be called before assignment on Windows and Netware. storage/myisam/mi_packrec.c: Bug#25408 5.1 Can't compile on Windows - Call DBUG_ENTER before variable assignment. --- storage/myisam/mi_packrec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/myisam/mi_packrec.c b/storage/myisam/mi_packrec.c index ba16d2c8c9b..62e3dc363db 100644 --- a/storage/myisam/mi_packrec.c +++ b/storage/myisam/mi_packrec.c @@ -592,8 +592,8 @@ static uint copy_decode_table(uint16 *to_pos, uint offset, uint16 *decode_table) { uint prev_offset; - prev_offset= offset; DBUG_ENTER("copy_decode_table"); + prev_offset= offset; /* Descent on the left side. */ if (!(*decode_table & IS_CHAR))