Skip to content

Instantly share code, notes, and snippets.

@predominant
Created February 19, 2018 02:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save predominant/8d40b874e98c54a91cc638a31dc914ee to your computer and use it in GitHub Desktop.
Save predominant/8d40b874e98c54a91cc638a31dc914ee to your computer and use it in GitHub Desktop.
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;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment