From 83ffbb4ec4e0519cd4f9c5f95e11d70c18a1b25b Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 30 Jan 2009 15:04:44 +0100 Subject: Remove a variable used just once --- source3/smbd/vfs.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'source3') diff --git a/source3/smbd/vfs.c b/source3/smbd/vfs.c index 0f70669772..bc6fd18b8e 100644 --- a/source3/smbd/vfs.c +++ b/source3/smbd/vfs.c @@ -871,7 +871,6 @@ NTSTATUS check_reduced_name(connection_struct *conn, const char *fname) bool free_resolved_name = False; #endif char *resolved_name = NULL; - size_t con_path_len = strlen(conn->connectpath); char *p = NULL; DEBUG(3,("reduce_name [%s] [%s]\n", fname, conn->connectpath)); @@ -957,7 +956,9 @@ NTSTATUS check_reduced_name(connection_struct *conn, const char *fname) } /* Check for widelinks allowed. */ - if (!lp_widelinks(SNUM(conn)) && (strncmp(conn->connectpath, resolved_name, con_path_len) != 0)) { + if (!lp_widelinks(SNUM(conn)) + && (strncmp(conn->connectpath, resolved_name, + strlen(conn->connectpath)) != 0)) { DEBUG(2, ("reduce_name: Bad access attempt: %s is a symlink outside the share path", fname)); if (free_resolved_name) { SAFE_FREE(resolved_name); -- cgit