diff options
| -rw-r--r-- | bluetooth/bthecho/bthcli/sys/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bluetooth/bthecho/bthcli/sys/client.c b/bluetooth/bthecho/bthcli/sys/client.c index a3947b2a..ec3a59c0 100644 --- a/bluetooth/bthecho/bthcli/sys/client.c +++ b/bluetooth/bthecho/bthcli/sys/client.c @@ -313,7 +313,7 @@ Return Value: goto exit2; } - serverSdpRecord = ExAllocatePoolWithTag(NonPagedPoolNx, requestSize, POOLTAG_BTHECHOSAMPLE); + serverSdpRecord = ExAllocatePool2(POOL_FLAG_NON_PAGED, requestSize, POOLTAG_BTHECHOSAMPLE); if (NULL == serverSdpRecord) { status = STATUS_INSUFFICIENT_RESOURCES; |
