summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-05-07 18:49:31 +0000
committerTed Kremenek <kremenek@apple.com>2008-05-07 18:49:31 +0000
commitfbd15899b3bcc459bea20f5bb2866244eea56d6a (patch)
tree4983962de0304a99b433fad73619a76611ffe99c /include
parent6925f5074f6c456dc37f052b67229d07f667b2e5 (diff)
downloadllvm-fbd15899b3bcc459bea20f5bb2866244eea56d6a.tar.gz
llvm-fbd15899b3bcc459bea20f5bb2866244eea56d6a.tar.bz2
llvm-fbd15899b3bcc459bea20f5bb2866244eea56d6a.tar.xz
Guard for empty strings in CStrInCStrNoCase.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50823 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/ADT/StringExtras.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/ADT/StringExtras.h b/include/llvm/ADT/StringExtras.h
index 9a3e1b5159..e3b3c8770a 100644
--- a/include/llvm/ADT/StringExtras.h
+++ b/include/llvm/ADT/StringExtras.h
@@ -147,8 +147,8 @@ static inline bool StringsEqualNoCase(const std::string &LHS,
/// NULL if 's1' cannot be found.
static inline const char* CStrInCStrNoCase(const char *s1, const char *s2) {
- // Are either strings NULL?
- if (!s1 || !s2)
+ // Are either strings NULL or empty?
+ if (!s1 || !s2 || s1[0] == '\0' || s2[0] == '\0')
return 0;
const char *I1=s1, *I2=s2;