summaryrefslogtreecommitdiffstats
path: root/auth2-pam.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-01-08 12:37:03 +1100
committerDamien Miller <djm@mindrot.org>2003-01-08 12:37:03 +1100
commite77c17ee4a699052bb012751b527d72488350fc7 (patch)
tree899d1201a5787ec5136c0b1f4d640c855a269916 /auth2-pam.c
parent13dd03a0e2605f0ec2da811aa814a58bc2dd9a3d (diff)
- (djm) Avoid redundant xstrdup/xfree in auth2-pam.c. From Solar via markus@
Diffstat (limited to 'auth2-pam.c')
-rw-r--r--auth2-pam.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/auth2-pam.c b/auth2-pam.c
index a2daf96b..ac28fb24 100644
--- a/auth2-pam.c
+++ b/auth2-pam.c
@@ -1,5 +1,5 @@
#include "includes.h"
-RCSID("$Id: auth2-pam.c,v 1.14 2002/06/28 16:48:12 mouring Exp $");
+RCSID("$Id: auth2-pam.c,v 1.15 2003/01/08 01:37:03 djm Exp $");
#ifdef USE_PAM
#include <security/pam_appl.h>
@@ -154,8 +154,7 @@ input_userauth_info_response_pam(int type, u_int32_t seqnr, void *ctxt)
resp = packet_get_string(&rlen);
context_pam2.responses[j].resp_retcode = PAM_SUCCESS;
- context_pam2.responses[j].resp = xstrdup(resp);
- xfree(resp);
+ context_pam2.responses[j].resp = resp;
context_pam2.num_received++;
}