From 1cf54ef4a69e78dff5a812d447b0f385b56c5ebd Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 13 Dec 2011 14:11:38 +0100 Subject: s3: Use talloc_tos() in set_write_time() Autobuild-User: Volker Lendecke Autobuild-Date: Tue Dec 13 15:44:58 CET 2011 on sn-devel-104 --- source3/locking/locking.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/locking/locking.c b/source3/locking/locking.c index e3b4e497a3..c1f99430ed 100644 --- a/source3/locking/locking.c +++ b/source3/locking/locking.c @@ -1438,7 +1438,7 @@ bool set_write_time(struct file_id fileid, struct timespec write_time) convert_timespec_to_time_t(write_time)), file_id_string_tos(&fileid))); - lck = get_share_mode_lock(NULL, fileid, NULL, NULL, NULL); + lck = get_share_mode_lock(talloc_tos(), fileid, NULL, NULL, NULL); if (lck == NULL) { return False; } -- cgit