summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_acl_tdb.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2009-03-04 14:48:33 -0800
committerJeremy Allison <jra@samba.org>2009-03-04 14:48:33 -0800
commitf85aa66ca22f29734bdacaa559737990fbe28d8a (patch)
treeb38eb987028585ccb28f7aa922becba4deb471c4 /source3/modules/vfs_acl_tdb.c
parentbb0fb975621f4962fb7e2438396d94818891151b (diff)
downloadsamba-f85aa66ca22f29734bdacaa559737990fbe28d8a.tar.gz
samba-f85aa66ca22f29734bdacaa559737990fbe28d8a.tar.bz2
samba-f85aa66ca22f29734bdacaa559737990fbe28d8a.zip
Fix crashes when running RAW-ACLs against system with tdb ACL modules
(caused by the POSIX pathname fixes). Jeremy.
Diffstat (limited to 'source3/modules/vfs_acl_tdb.c')
-rw-r--r--source3/modules/vfs_acl_tdb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/modules/vfs_acl_tdb.c b/source3/modules/vfs_acl_tdb.c
index 73dbca4809..a77f6d60f4 100644
--- a/source3/modules/vfs_acl_tdb.c
+++ b/source3/modules/vfs_acl_tdb.c
@@ -195,7 +195,7 @@ static NTSTATUS get_acl_blob(TALLOC_CTX *ctx,
if (fsp && fsp->fh->fd != -1) {
ret = SMB_VFS_FSTAT(fsp, &sbuf);
} else {
- if (fsp->posix_open) {
+ if (fsp && fsp->posix_open) {
ret = SMB_VFS_LSTAT(handle->conn, name, &sbuf);
} else {
ret = SMB_VFS_STAT(handle->conn, name, &sbuf);
@@ -513,7 +513,7 @@ static NTSTATUS inherit_new_acl(vfs_handle_struct *handle,
if (fsp && !fsp->is_directory && fsp->fh->fd != -1) {
ret = SMB_VFS_FSTAT(fsp, &sbuf);
} else {
- if (fsp->posix_open) {
+ if (fsp && fsp->posix_open) {
ret = SMB_VFS_LSTAT(handle->conn,fname, &sbuf);
} else {
ret = SMB_VFS_STAT(handle->conn,fname, &sbuf);