Fix mismatch between new and free in numa.cpp (#15870)
authorJan Vorlicek <janvorli@microsoft.com>
Tue, 16 Jan 2018 04:24:45 +0000 (05:24 +0100)
committerJan Kotas <jkotas@microsoft.com>
Tue, 16 Jan 2018 04:24:45 +0000 (20:24 -0800)
commit795d9c05ad2670ae2f1d9b0353fd9d398688db99
tree64c4e0a14cb9e2816487fd4048088d6e20fcf6c7
parent8b8b3b95adada2a9cb2b00876c6d11ef3e4438f7
Fix mismatch between new and free in numa.cpp (#15870)

* Fix mismatch between new and free in numa.cpp

One of the allocations in the numa.cpp uses new to allocate an array,
but it incorrectly uses free to free the memory. This change fixes it.
src/pal/src/numa/numa.cpp