Builds configured with Valgrind but without assertions would fail due to
a typo in the recent change.  This should be included when back-patching
2a8a0067 into v17.
pull/200/head
Thomas Munro 10 months ago
parent 9cdc21b533
commit 2509b857cc
  1. 4
      src/backend/storage/aio/read_stream.c

@ -789,8 +789,8 @@ read_stream_next_buffer(ReadStream *stream, void **per_buffer_data)
wipe_mem(per_buffer_data, stream->per_buffer_data_size);
#elif defined(USE_VALGRIND)
/* Tell it ourselves. */
VALGRIND_MAKE_MEM_NO_ACCESS(per_buffer_data,
stream->per_buffer_data_size);
VALGRIND_MAKE_MEM_NOACCESS(per_buffer_data,
stream->per_buffer_data_size);
#endif
}
#endif

Loading…
Cancel
Save