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

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.
This commit is contained in:
unknown
2007-01-18 10:34:50 -05:00
parent 1a0bd37c4d
commit 4ddc4051a1

View File

@@ -592,8 +592,8 @@ static uint copy_decode_table(uint16 *to_pos, uint offset,
uint16 *decode_table) uint16 *decode_table)
{ {
uint prev_offset; uint prev_offset;
prev_offset= offset;
DBUG_ENTER("copy_decode_table"); DBUG_ENTER("copy_decode_table");
prev_offset= offset;
/* Descent on the left side. */ /* Descent on the left side. */
if (!(*decode_table & IS_CHAR)) if (!(*decode_table & IS_CHAR))