On 2014-11-01 11:02, [email protected] wrote:
> - OutputBuffer->FileRecordLength = FileRecord->BytesInUse;
> - RtlCopyMemory(OutputBuffer->FileRecordBuffer, FileRecord,
> FileRecord->BytesInUse);
> + OutputBuffer->FileRecordLength = DeviceExt->NtfsInfo.BytesPerFileRecord;
> + RtlCopyMemory(OutputBuffer->FileRecordBuffer, FileRecord,
> DeviceExt->NtfsInfo.BytesPerFileRecord);
Wait, now there's no check against OutputBufferLength at all? It should
at least be
min(DeviceExt->NtfsInfo.BytesPerFileRecord,
Stack->Parameters.FileSystemControl.OutputBufferLength)
in the memcpy size. Or am I missing something?
_______________________________________________
Ros-dev mailing list
[email protected]
http://www.reactos.org/mailman/listinfo/ros-dev