Fix one missing check for NULL after malloc (#15877)
authorJan Vorlicek <janvorli@microsoft.com>
Tue, 16 Jan 2018 23:05:52 +0000 (00:05 +0100)
committerJan Kotas <jkotas@microsoft.com>
Tue, 16 Jan 2018 23:05:52 +0000 (15:05 -0800)
commit5424bc69242a3cead6e1ed84c442a178a1ec8fe7
treea42217e62aca80f69d9f1b4ec0bf42e186935ed7
parent4c8a732b6c27c5bfbdf9aee488a22704c4eb58bd
Fix one missing check for NULL after malloc (#15877)

When making the last change to the numa.cpp, I have made a
mistake and forgotten to check return value of one of the mallocs.
This change fixes that and also changes the code pattern to use
goto for the cleanup purposes instead of the nested ifs.
src/pal/src/numa/numa.cpp