Buildfarm member skink reports that the new REPACK code is trying to
write uninitialized bytes to disk, which correspond to padding space in
the SerializedSnapshotData struct. Silence that by initializing the
memory in SerializeSnapshot() to all zeroes.
Co-authored-by: Srinath Reddy Sadipiralla <srinath2133@gmail.com>
Co-authored-by: Álvaro Herrera <alvherre@kurilemu.de>
Discussion: https://postgr.es/m/
1976915.
1775537087@sss.pgh.pa.us
/* To make restoration easier, write the snapshot size first. */
BufFileWrite(file, &snap_size, sizeof(snap_size));
BufFileWrite(file, snap_space, snap_size);
- pfree(snap_space);
BufFileClose(file);
+ pfree(snap_space);
/* Increase the counter to tell the backend that the file is available. */
SpinLockAcquire(&shared->mutex);
void
SerializeSnapshot(Snapshot snapshot, char *start_address)
{
- SerializedSnapshotData serialized_snapshot;
+ SerializedSnapshotData serialized_snapshot = {0};
Assert(snapshot->subxcnt >= 0);