Commit d0a0a0b1 authored by Inaam Rana's avatar Inaam Rana

Bug#13612811 VALGRIND ERROR IN OS_AIO_INIT

Fix valgrind warning introduced by fix for bug 11765450.
parent a73e2cb2
...@@ -3256,6 +3256,9 @@ os_aio_native_aio_supported(void) ...@@ -3256,6 +3256,9 @@ os_aio_native_aio_supported(void)
buf = (byte*) ut_malloc(UNIV_PAGE_SIZE * 2); buf = (byte*) ut_malloc(UNIV_PAGE_SIZE * 2);
ptr = (byte*) ut_align(buf, UNIV_PAGE_SIZE); ptr = (byte*) ut_align(buf, UNIV_PAGE_SIZE);
/* Suppress valgrind warning. */
memset(buf, 0x00, UNIV_PAGE_SIZE * 2);
memset(&iocb, 0x0, sizeof(iocb)); memset(&iocb, 0x0, sizeof(iocb));
p_iocb = &iocb; p_iocb = &iocb;
io_prep_pwrite(p_iocb, fd, ptr, UNIV_PAGE_SIZE, 0); io_prep_pwrite(p_iocb, fd, ptr, UNIV_PAGE_SIZE, 0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment