projects
/
reactos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f5d366b
)
[FLTMGR] Properly allocate CCB in CreatePortCCB()
author
Pierre Schweitzer
<pierre@reactos.org>
Sat, 6 Jan 2018 12:54:21 +0000
(13:54 +0100)
committer
Pierre Schweitzer
<pierre@reactos.org>
Sat, 6 Jan 2018 12:54:21 +0000
(13:54 +0100)
CID
1427031
drivers/filters/fltmgr/Messaging.c
patch
|
blob
|
history
diff --git
a/drivers/filters/fltmgr/Messaging.c
b/drivers/filters/fltmgr/Messaging.c
index
6a40e0d
..
d30292a
100644
(file)
--- a/
drivers/filters/fltmgr/Messaging.c
+++ b/
drivers/filters/fltmgr/Messaging.c
@@
-817,7
+817,7
@@
CreatePortCCB(_In_ PFLT_PORT_OBJECT PortObject)
PPORT_CCB PortCCB;
/* Allocate a CCB struct to hold the client port object info */
- PortCCB = ExAllocatePoolWithTag(NonPagedPool, sizeof(P
P
ORT_CCB), FM_TAG_CCB);
+ PortCCB = ExAllocatePoolWithTag(NonPagedPool, sizeof(PORT_CCB), FM_TAG_CCB);
if (PortCCB)
{
/* Initialize the structure */
@@
-828,4
+828,4
@@
CreatePortCCB(_In_ PFLT_PORT_OBJECT PortObject)
}
return PortCCB;
-}
\ No newline at end of file
+}