]> granicus.if.org Git - postgresql/commit
Clean up password prompting logic in streamutil.c.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 15 Nov 2013 22:27:41 +0000 (17:27 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 15 Nov 2013 22:27:41 +0000 (17:27 -0500)
commit3172eea062e779db39df9a48fca0ad7448163f98
treef692329ff3681614de4be590a038184717bd99e2
parentf3b3b8d5be00ebcfade3644fca7a80e25fd88a70
Clean up password prompting logic in streamutil.c.

The previous coding was fairly unreadable and drew double-free warnings
from clang.  I believe the double free was actually not reachable, because
PQconnectionNeedsPassword is coded to not return true if a password was
provided, so that the loop can't iterate more than twice.  Nonetheless
it seems worth rewriting.  No back-patch since this is just cosmetic.
src/bin/pg_basebackup/streamutil.c