aboutsummaryrefslogtreecommitdiff
path: root/gcc/ubsan.c
diff options
context:
space:
mode:
authorKirill Yukhin <kirill.yukhin@intel.com>2016-09-03 10:57:05 +0000
committerKirill Yukhin <kyukhin@gcc.gnu.org>2016-09-03 10:57:05 +0000
commit2994b5cca378088363be42d1a8fdc941326520d7 (patch)
treec90e7feb7262b6ff39b402a1682228a634456795 /gcc/ubsan.c
parentb5d506593e2edfc1adfa6e0bb04a332393d126fd (diff)
downloadgcc-2994b5cca378088363be42d1a8fdc941326520d7.zip
gcc-2994b5cca378088363be42d1a8fdc941326520d7.tar.gz
gcc-2994b5cca378088363be42d1a8fdc941326520d7.tar.bz2
ubsan.c (ubsan_use_new_style_p): Fix check for empty string.
gcc/ * ubsan.c (ubsan_use_new_style_p): Fix check for empty string. From-SVN: r239971
Diffstat (limited to 'gcc/ubsan.c')
-rw-r--r--gcc/ubsan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ubsan.c b/gcc/ubsan.c
index 5cbc98d..d3bd8e3 100644
--- a/gcc/ubsan.c
+++ b/gcc/ubsan.c
@@ -1469,7 +1469,7 @@ ubsan_use_new_style_p (location_t loc)
expanded_location xloc = expand_location (loc);
if (xloc.file == NULL || strncmp (xloc.file, "\1", 2) == 0
- || xloc.file == '\0' || xloc.file[0] == '\xff'
+ || xloc.file[0] == '\0' || xloc.file[0] == '\xff'
|| xloc.file[1] == '\xff')
return false;