secured buffer access in NtCreateSection(), NtOpenSection(), NtMapViewOfSection(), NtQuerySection() and NtExtendSection()

svn path=/trunk/; revision=13583
This commit is contained in:
Thomas Bluemel
2005-02-15 15:46:22 +00:00
parent a2e0ee8993
commit 382d68525a
2 changed files with 286 additions and 91 deletions
+6 -6
View File
@@ -5420,10 +5420,10 @@ NTSTATUS
STDCALL
NtQuerySection(
IN HANDLE SectionHandle,
IN CINT SectionInformationClass,
IN SECTION_INFORMATION_CLASS SectionInformationClass,
OUT PVOID SectionInformation,
IN ULONG Length,
OUT PULONG ResultLength
IN ULONG SectionInformationLength,
OUT PULONG ResultLength OPTIONAL
);
/*
@@ -6451,10 +6451,10 @@ NTSTATUS
STDCALL
ZwQuerySection(
IN HANDLE SectionHandle,
IN CINT SectionInformationClass,
IN SECTION_INFORMATION_CLASS SectionInformationClass,
OUT PVOID SectionInformation,
IN ULONG Length,
OUT PULONG ResultLength
IN ULONG SectionInformationLength,
OUT PULONG ResultLength OPTIONAL
);
typedef struct _SECTION_IMAGE_INFORMATION