Remove some superfluous NULL checks

In all of these situations, NULL is logically not allowed, making the
checks redundant.

Coverity complained about accessing the pointers before checking them
for NULL later.
This commit is contained in:
wm4
2014-11-21 05:12:55 +01:00
parent 4704fab82c
commit 85fb2af369
4 changed files with 3 additions and 7 deletions

View File

@@ -268,7 +268,7 @@ static bool needs_config_quoting(const char *s)
{
if (s[0] == '%')
return true;
for (int i = 0; s && s[i]; i++) {
for (int i = 0; s[i]; i++) {
unsigned char c = s[i];
if (!mp_isprint(c) || mp_isspace(c) || c == '#' || c == '\'' || c == '"')
return true;