[compiler-rt] r234151 - Minor follow-up fix to r234150
Timur Iskhodzhanov
timurrrr at google.com
Mon Apr 6 05:54:06 PDT 2015
Author: timurrrr
Date: Mon Apr 6 07:54:06 2015
New Revision: 234151
URL: http://llvm.org/viewvc/llvm-project?rev=234151&view=rev
Log:
Minor follow-up fix to r234150
Modified:
compiler-rt/trunk/lib/sanitizer_common/sanitizer_win.cc
Modified: compiler-rt/trunk/lib/sanitizer_common/sanitizer_win.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/sanitizer_win.cc?rev=234151&r1=234150&r2=234151&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/sanitizer_win.cc (original)
+++ compiler-rt/trunk/lib/sanitizer_common/sanitizer_win.cc Mon Apr 6 07:54:06 2015
@@ -243,7 +243,7 @@ void DumpProcessMap() {
if (mi.end_address != 0) {
Printf("\t%p-%p %s\n", mi.base_address, mi.end_address,
mi.filepath[0] ? mi.filepath : "[no name]");
- } else if (mi.filepath) {
+ } else if (mi.filepath[0]) {
Printf("\t??\?-??? %s\n", mi.filepath);
} else {
Printf("\t???\n");
More information about the llvm-commits
mailing list