diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/modules/vfs_streams_depot.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/source3/modules/vfs_streams_depot.c b/source3/modules/vfs_streams_depot.c index da11ba4323..3ada92eeb5 100644 --- a/source3/modules/vfs_streams_depot.c +++ b/source3/modules/vfs_streams_depot.c @@ -847,15 +847,14 @@ static NTSTATUS streams_depot_streaminfo(vfs_handle_struct *handle, unsigned int *pnum_streams, struct stream_struct **pstreams) { - struct smb_filename *smb_fname_base = NULL; + struct smb_filename *smb_fname_base; int ret; NTSTATUS status; struct streaminfo_state state; - status = create_synthetic_smb_fname(talloc_tos(), fname, NULL, NULL, - &smb_fname_base); - if (!NT_STATUS_IS_OK(status)) { - return status; + smb_fname_base = synthetic_smb_fname(talloc_tos(), fname, NULL, NULL); + if (smb_fname_base == NULL) { + return NT_STATUS_NO_MEMORY; } if ((fsp != NULL) && (fsp->fh->fd != -1)) { |