Comparing std::string with NULL is a bad idea, so just check whether its empty.
authorTorok Edwin <edwintorok@gmail.com>
Thu, 10 Dec 2009 10:01:47 +0000 (10:01 +0000)
committerTorok Edwin <edwintorok@gmail.com>
Thu, 10 Dec 2009 10:01:47 +0000 (10:01 +0000)
commitf05e45eb373a47054cd569e9bf727f71109be382
tree96347feb03aecc5e31331772255b7f75d417081b
parent3472ae1e7b0f38c4ac0802ffc2900f71a5470c3b
Comparing std::string with NULL is a bad idea, so just check whether its empty.

This code was crashing always with oprofile enabled, since it tried to create a StringRef
out of NULL, which run strlen on NULL.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91046 91177308-0d34-0410-b5e6-96231b3b80d8
lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp