mirror of
https://github.com/postgres/postgres.git
synced 2025-07-03 20:02:46 +03:00
Fix typo in 2a8a0067
.
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.
This commit is contained in:
@ -789,7 +789,7 @@ read_stream_next_buffer(ReadStream *stream, void **per_buffer_data)
|
|||||||
wipe_mem(per_buffer_data, stream->per_buffer_data_size);
|
wipe_mem(per_buffer_data, stream->per_buffer_data_size);
|
||||||
#elif defined(USE_VALGRIND)
|
#elif defined(USE_VALGRIND)
|
||||||
/* Tell it ourselves. */
|
/* Tell it ourselves. */
|
||||||
VALGRIND_MAKE_MEM_NO_ACCESS(per_buffer_data,
|
VALGRIND_MAKE_MEM_NOACCESS(per_buffer_data,
|
||||||
stream->per_buffer_data_size);
|
stream->per_buffer_data_size);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user