deviceExtension = (PDEVICE_EXTENSION)DeviceObject->DeviceExtension; deviceExtension->file_name.Length = openFileInformation->file_nameLength; deviceExtension->file_name.MaximumLength = openFileInformation->file_nameLength; deviceExtension->file_name.Buffer = (PCHAR)ExAllocatePool(NonPagedPool, openFileInformation->file_nameLength); RtlCopyMemory( deviceExtension->file_name.Buffer, openFileInformation->file_name, openFileInformation->file_nameLength );
标签:openFileInformation,file,nameLength,deviceExtension,RtlCopyMemory,崩溃,name From: https://www.cnblogs.com/hshy/p/17789363.html