mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
Loop when necessary in contrib/pgcrypto's pktreader_pull().
This fixes a scenario in which pgp_sym_decrypt() failed with "Wrong key or corrupt data" on messages whose length is 6 less than a power of 2. Per bug #11905 from Connor Penhale. Fix by Marko Tiikkaja, regression test case from Jeff Janes.
This commit is contained in:
@ -182,7 +182,7 @@ pktreader_pull(void *priv, PullFilter *src, int len,
|
||||
if (pkt->type == PKT_CONTEXT)
|
||||
return pullf_read(src, len, data_p);
|
||||
|
||||
if (pkt->len == 0)
|
||||
while (pkt->len == 0)
|
||||
{
|
||||
/* this was last chunk in stream */
|
||||
if (pkt->type == PKT_NORMAL)
|
||||
|
Reference in New Issue
Block a user