diff options
author | Oleksandr Byelkin <sanja@mariadb.com> | 2015-09-01 11:47:06 +0200 |
---|---|---|
committer | Oleksandr Byelkin <sanja@mariadb.com> | 2015-09-06 22:26:33 +0200 |
commit | 0ce0b88080fd39f6841206b64d8723af9779e849 (patch) | |
tree | 3b0f4ab28e0f7f64d198a7c8179166ccda7bb102 /storage/archive | |
parent | 9abf426ee7f1ca2bab2683387137d3da0f18bc0e (diff) | |
download | mariadb-git-0ce0b88080fd39f6841206b64d8723af9779e849.tar.gz |
MDEV-8450: PATCH] Wrong macro expansion in Query_cache::send_result_to_client()
Expression in macro protected by ()
Diffstat (limited to 'storage/archive')
-rw-r--r-- | storage/archive/archive_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/archive/archive_test.c b/storage/archive/archive_test.c index d01c1e0b22e..bb052b8409c 100644 --- a/storage/archive/archive_test.c +++ b/storage/archive/archive_test.c @@ -33,7 +33,7 @@ #define ARCHIVE_ROW_HEADER_SIZE 4 -#define BUFFER_LEN 1024 + ARCHIVE_ROW_HEADER_SIZE +#define BUFFER_LEN (1024 + ARCHIVE_ROW_HEADER_SIZE) char test_string[BUFFER_LEN]; |