From: Jeremy Allison Date: Thu, 24 Feb 2011 02:32:35 +0000 (-0800) Subject: Remember to free the second temporary string. X-Git-Tag: tevent-0.9.11~317 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9e93dacfc6020deab9f15353ae32512a58e7b4b8;p=thirdparty%2Fsamba.git Remember to free the second temporary string. Autobuild-User: Jeremy Allison Autobuild-Date: Thu Feb 24 04:17:49 CET 2011 on sn-devel-104 --- diff --git a/source3/smbd/open.c b/source3/smbd/open.c index 56c7d03a2c0..cd3fb06f25a 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -3540,6 +3540,7 @@ NTSTATUS get_relative_fid_filename(connection_struct *conn, out: TALLOC_FREE(parent_fname); + TALLOC_FREE(new_base_name); return status; }