1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-11 16:58:40 +03:00

Fix bug 7075 - bug in vfs_scannedonly rmdir implementation.

Check for NULL on opendir, correctly call next rmdir.

Jeremy.
This commit is contained in:
Jeremy Allison 2010-02-04 16:23:32 -08:00
parent 0c93aa3cd5
commit d899032636

View File

@ -828,6 +828,9 @@ static int scannedonly_rmdir(vfs_handle_struct * handle, const char *path)
path_w_slash = name_w_ending_slash(ctx,path);
dirp = SMB_VFS_NEXT_OPENDIR(handle, path, NULL, 0);
if (!dirp) {
return -1;
}
while ((dire = SMB_VFS_NEXT_READDIR(handle, dirp, NULL)) != NULL) {
if (ISDOT(dire->d_name) || ISDOTDOT(dire->d_name)) {
continue;
@ -884,7 +887,8 @@ static int scannedonly_rmdir(vfs_handle_struct * handle, const char *path)
TALLOC_FREE(smb_fname);
}
}
return SMB_VFS_NEXT_CLOSEDIR(handle, dirp);
SMB_VFS_NEXT_CLOSEDIR(handle, dirp);
return SMB_VFS_NEXT_RMDIR(handle, path);
}
static void free_scannedonly_data(void **data)