pgsql: A collection of small fixes for the SCRAM patch.

From: Heikki Linnakangas <heikki(dot)linnakangas(at)iki(dot)fi>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: A collection of small fixes for the SCRAM patch.
Date: 2017-03-07 17:02:34
Message-ID: E1clIVO-0008F0-2s@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

A collection of small fixes for the SCRAM patch.

* Add required #includes for htonl. Per buildfarm members pademelon/gaur.

* Remove unnecessary "#include <utils/memutils>".

* Fix checking for empty string in pg_SASL_init. (Reported by Peter
Eisentraut and his compiler)

* Move code in pg_SASL_init to match the recent changes (commit ba005f193d)
to pg_fe_sendauth() function, where it's copied from.

* Return value of malloc() was not checked for NULL in
scram_SaltedPassword(). Fix by avoiding the malloc().

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/95c1dbcdfffcc3a77e693c3c2759e26a01f465c8

Modified Files
--------------
src/common/scram-common.c | 30 ++++++++++--------------------
src/interfaces/libpq/fe-auth.c | 7 ++++---
2 files changed, 14 insertions(+), 23 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2017-03-07 17:06:24 pgsql: Clean up test_ifaddrs a bit.
Previous Message Robert Haas 2017-03-07 16:57:28 pgsql: Consider parallel merge joins.