From: Robert Haas Date: Mon, 15 Nov 2021 19:22:13 +0000 (-0500) Subject: Fix thinko in bbsink_throttle_manifest_contents. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=1b098da2009362e0e8d9a1d0a6aac2f2bd3e2f0b;p=users%2Frhaas%2Fpostgres.git Fix thinko in bbsink_throttle_manifest_contents. Report and diagnosis by Dmitry Dolgov. Discussion: http://postgr.es/m/20211115162641.dmo6l32fklh64gnw@localhost --- diff --git a/src/backend/replication/basebackup_throttle.c b/src/backend/replication/basebackup_throttle.c index f163931f8a..f5202bae87 100644 --- a/src/backend/replication/basebackup_throttle.c +++ b/src/backend/replication/basebackup_throttle.c @@ -122,7 +122,7 @@ bbsink_throttle_manifest_contents(bbsink *sink, size_t len) { throttle((bbsink_throttle *) sink, len); - bbsink_forward_manifest_contents(sink->bbs_next, len); + bbsink_forward_manifest_contents(sink, len); } /*