diff options
author | Tom de Vries <tdevries@suse.de> | 2025-03-31 16:12:22 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2025-03-31 16:12:22 +0200 |
commit | 80a7eb6ac7d6661b06e014329cac101e83d2003c (patch) | |
tree | 8a0c0e7598009b9530d432bf32c19b2592228db3 /gdbsupport | |
parent | 7b34a95034ff62537db66049a1736e7b4436e499 (diff) | |
download | binutils-80a7eb6ac7d6661b06e014329cac101e83d2003c.zip binutils-80a7eb6ac7d6661b06e014329cac101e83d2003c.tar.gz binutils-80a7eb6ac7d6661b06e014329cac101e83d2003c.tar.bz2 |
[gdb] Check strpbrk against nullptr
In noticed two occurrences of "if (strpbrk (...))".
Fix this style issue by checking against nullptr.
Diffstat (limited to 'gdbsupport')
-rw-r--r-- | gdbsupport/common-inferior.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdbsupport/common-inferior.cc b/gdbsupport/common-inferior.cc index e544780..d2fd348 100644 --- a/gdbsupport/common-inferior.cc +++ b/gdbsupport/common-inferior.cc @@ -59,7 +59,7 @@ escape_characters (const char *arg, const char *special) #ifdef __MINGW32__ bool quoted = false; - if (strpbrk (arg, special)) + if (strpbrk (arg, special) != nullptr) { quoted = true; result += quote; |