[tsan] Change nullptr to NULL in realloc-zero.cc test. Some environments don't have nullptr.

llvm-svn: 286166
This commit is contained in:
Kuba Brecka 2016-11-07 22:26:13 +00:00
parent 4aeb080db3
commit c784b36fca
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
#include <sys/mman.h>
int main() {
void *p = realloc(nullptr, 0);
void *p = realloc(NULL, 0);
if (!p) {
abort();
}