Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IRP_MJ_DIRECTORY_CONTROL
#12870IRP_MJ_DIRECTORY_CONTROL
#12870Changes from 132 commits
24c1a90
41ac367
58cac52
fa3531f
ab4d66d
aaa8369
54b7e3d
071620b
52a3d5d
ceddf84
6baccf6
9036618
770f6e7
17a35e8
c946b52
787b67e
6cd9ac2
997b7d6
eb8ed1a
54b53d0
8f1ead3
9a88738
fb60ebb
51f83e5
b4192a6
6cf694a
fa0d555
4b9c330
66eb895
687b84c
058530b
1543585
549eb02
8c5e2b1
de13b64
8017ef2
1ce587f
66b5b00
de8e052
0feae71
20d9aeb
ec900b8
e43694b
95af26b
2adf291
eec39f5
c43d688
a56236f
20efe3e
dac6c41
6251502
2cb663d
3615580
7fe5b95
9274c31
7975209
b0072f9
ce1c6c5
1732e90
6605005
224db3a
9ec0cba
ee34ddd
dbedfc8
df26b8f
e0bbfcf
eccab5a
51c956c
8d532c8
750fe60
f4959ee
e5d849e
f146e42
53cc341
fe4bd3e
6bfc7a3
27d7c53
f00eeb6
0227339
cd4b5a2
9ebf970
8d97123
034f396
b01c4ee
d7950f6
1db2ff5
e1ce4ce
664a8e4
6ce109a
3dc58ad
90350d1
a71b390
c4371da
9e4db09
511b1d2
02f3ec9
750e7ff
5bd7968
15fb5c5
efa9ac1
23ddd4d
67ee1b8
8e0a0ed
61d2509
f6f7c69
8dc6616
57a826c
b449124
6b304ff
766c0ca
93ba0bf
3c3db15
570019a
58cf5e2
7155ef4
7e4986f
cde94ea
bd86280
1abfd00
0732269
ab54ef5
5c4aedb
6213cb1
91c855e
cd0a76a
25315f0
1f93760
2edf592
5ed8bd0
7427ea9
5b8a8e6
7b97bcf
ea608cc
d491636
8046597
9a9eb22
686633c
7718818
aa1af3a
37c3fbb
f48195c
c07f3e5
405e2dc
7275216
3d60d06
1fba706
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm curious the reasoning behind this comment. Any time you
make
a slice in Go the memory is handled by Go. Was there some reason we felt the need to clarify that here?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was the first time I'd needed to pass something non-trivial across the FFI; this is basically me baby-talking myself through the memory management logic. It can be removed from the production code.