mirror of
				https://github.com/winfsp/winfsp.git
				synced 2025-10-29 11:08:37 -05:00 
			
		
		
		
	dll: fsctl: testing
This commit is contained in:
		| @@ -86,13 +86,14 @@ FSP_API NTSTATUS FspFsctlCreateVolume(PWSTR DevicePath, | ||||
|         Result = FspNtStatusFromWin32(GetLastError()); | ||||
|         goto exit; | ||||
|     } | ||||
|     ParamsBuf = malloc(sizeof *ParamsBuf + SecurityDescriptorSize); | ||||
|     ParamsBuf = malloc(FSP_FSCTL_VOLUME_PARAMS_SIZE + SecurityDescriptorSize); | ||||
|     if (0 == ParamsBuf) | ||||
|     { | ||||
|         Result = STATUS_INSUFFICIENT_RESOURCES; | ||||
|         goto exit; | ||||
|     } | ||||
|     SecurityDescriptorBuf = (PVOID)(ParamsBuf + 1); | ||||
|     memset(ParamsBuf, 0, FSP_FSCTL_VOLUME_PARAMS_SIZE); | ||||
|     SecurityDescriptorBuf = (PVOID)((PUINT8)ParamsBuf + FSP_FSCTL_VOLUME_PARAMS_SIZE); | ||||
|     if (!MakeSelfRelativeSD(SecurityDescriptor, SecurityDescriptorBuf, &SecurityDescriptorSize)) | ||||
|     { | ||||
|         Result = FspNtStatusFromWin32(GetLastError()); | ||||
|   | ||||
| @@ -107,7 +107,7 @@ static NTSTATUS FspFsctlCreateVolume( | ||||
|     ULONG OutputBufferLength = IrpSp->Parameters.FileSystemControl.OutputBufferLength; | ||||
|     PVOID SystemBuffer = Irp->AssociatedIrp.SystemBuffer; | ||||
|     const FSP_FSCTL_VOLUME_PARAMS *Params = SystemBuffer; | ||||
|     PSECURITY_DESCRIPTOR SecurityDescriptor = (PVOID)(Params + 1); | ||||
|     PSECURITY_DESCRIPTOR SecurityDescriptor = (PVOID)((PUINT8)Params + FSP_FSCTL_VOLUME_PARAMS_SIZE); | ||||
|     DWORD SecurityDescriptorSize = InputBufferLength - sizeof *Params; | ||||
|     if (sizeof *Params >= InputBufferLength || 0 == SystemBuffer || | ||||
|         !FspValidRelativeSecurityDescriptor(SecurityDescriptor, SecurityDescriptorSize, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user