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
This commit is contained in:
parent
b5d506593e
commit
2994b5cca3
@ -1,3 +1,7 @@
|
||||
2016-09-03 Kirill Yukhin <kirill.yukhin@intel.com>
|
||||
|
||||
* ubsan.c (ubsan_use_new_style_p): Fix check for empty string.
|
||||
|
||||
2016-09-02 David Malcolm <dmalcolm@redhat.com>
|
||||
|
||||
* common.opt (fdiagnostics-generate-patch): New option.
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user