summaryrefslogtreecommitdiffstats
path: root/ldap/servers/slapd/ntuserpin.c
diff options
context:
space:
mode:
authorRich Megginson <rmeggins@redhat.com>2005-03-11 03:47:36 +0000
committerRich Megginson <rmeggins@redhat.com>2005-03-11 03:47:36 +0000
commit9667f84c94b16d51743bea68df24aeee57bf6f82 (patch)
tree3e4ac798dc26f0fb3c7883c88d83c5e254f08384 /ldap/servers/slapd/ntuserpin.c
parent5a9fd42bc4bfc2ca4a4fad2f10881ea16cf504ea (diff)
downloadds-9667f84c94b16d51743bea68df24aeee57bf6f82.tar.gz
ds-9667f84c94b16d51743bea68df24aeee57bf6f82.tar.xz
ds-9667f84c94b16d51743bea68df24aeee57bf6f82.zip
This one is mostly strcpy/strcat checking, checking for null strings before strlen, removing some dead code, other odds and ends.
Diffstat (limited to 'ldap/servers/slapd/ntuserpin.c')
-rw-r--r--ldap/servers/slapd/ntuserpin.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/ldap/servers/slapd/ntuserpin.c b/ldap/servers/slapd/ntuserpin.c
index 2d3a9081..251e4bfd 100644
--- a/ldap/servers/slapd/ntuserpin.c
+++ b/ldap/servers/slapd/ntuserpin.c
@@ -121,8 +121,7 @@ static char *getPin(SVRCOREPinObj *obj, const char *tokenName, PRBool retry)
buf[i].TokenLength)==0)
{
memset(pin, '\0', MAX_PASSWORD);
- strncpy (pin, buf[i].Password,
- buf[i].PasswordLength);
+ PL_strncpyz (pin, buf[i].Password, sizeof(pin));
slapi_ch_free ((void **) &buf);
return slapi_ch_strdup(pin);
}
@@ -142,10 +141,10 @@ static char *getPin(SVRCOREPinObj *obj, const char *tokenName, PRBool retry)
{
slapi_ch_free ((void **) &buf);
buf = (PK11_PIN *)slapi_ch_malloc(sizeof(PK11_PIN));
- strcpy (buf[0].TokenName, tokenName);
- buf[0].TokenLength=strlen(tokenName);
- strcpy (buf[0].Password, password);
- buf[0].PasswordLength=strlen(password);
+ PL_strncpyz (buf[0].TokenName, tokenName, sizeof(buf[0].TokenName));
+ buf[0].TokenLength=strlen(buf[0].TokenName);
+ PL_strncpyz (buf[0].Password, password, sizeof(buf[0].Password));
+ buf[0].PasswordLength=strlen(buf[0].Password);
if (i== cbRemotePassword)
{
/* Add a new token and password to the end of the table.*/