1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-11 10:01:57 +03:00

Fix GSS API pointer checking.

Kris Jurka
This commit is contained in:
Bruce Momjian
2007-09-14 15:58:02 +00:00
parent 12afe7bc76
commit 7f9de5407a
2 changed files with 7 additions and 7 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/libpq/auth.c,v 1.155 2007/07/24 09:00:27 mha Exp $
* $PostgreSQL: pgsql/src/backend/libpq/auth.c,v 1.156 2007/09/14 15:58:02 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -493,7 +493,7 @@ pg_GSS_recvauth(Port *port)
/*
* Release service principal credentials
*/
gss_release_cred(&min_stat, port->gss->cred);
gss_release_cred(&min_stat, &port->gss->cred);
}
/*