summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2003-04-23 10:06:00 +0000
committerAndrew Bartlett <abartlet@samba.org>2003-04-23 10:06:00 +0000
commit95af8e27b1e1889f85aa361ce6151dc0e2071724 (patch)
treed37b758fb2a07eec330f6daa4cd3969e0258840d /source3
parent9265628c20fba2c3281feebbc53d4a90c81f92c9 (diff)
downloadsamba-95af8e27b1e1889f85aa361ce6151dc0e2071724.tar.gz
samba-95af8e27b1e1889f85aa361ce6151dc0e2071724.tar.bz2
samba-95af8e27b1e1889f85aa361ce6151dc0e2071724.zip
Make this safe for -DDEVELOPER checks.
Andrew Bartlett (This used to be commit 39fb77d8c1d9dddf00e8063198157bf77fb58a8f)
Diffstat (limited to 'source3')
-rw-r--r--source3/smbwrapper/shared.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbwrapper/shared.c b/source3/smbwrapper/shared.c
index b4cfcf7148..ca8df5841d 100644
--- a/source3/smbwrapper/shared.c
+++ b/source3/smbwrapper/shared.c
@@ -179,8 +179,8 @@ void smbw_setshared(const char *name, const char *val)
SSVAL(&variables[shared_size], 0, l1);
SSVAL(&variables[shared_size], 2, l2);
- pstrcpy(&variables[shared_size] + 4, name);
- pstrcpy(&variables[shared_size] + 4 + l1, val);
+ safe_strcpy(&variables[shared_size] + 4, name, l1-1);
+ safe_strcpy(&variables[shared_size] + 4 + l1, val, l2-1);
shared_size += l1+l2+4;