diff options
author | Yvan Roux <yvan.roux@linaro.org> | 2016-04-15 13:29:26 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2016-06-02 13:13:01 +0200 |
commit | 861a38359832548ffed4e38dc5f7fecd0a5a0264 (patch) | |
tree | 04af95dddd63e86d3d6134235f776918859b740f | |
parent | a79b262c1e68098701da6ac34bd1ba8ca8413961 (diff) | |
download | glibc-861a38359832548ffed4e38dc5f7fecd0a5a0264.zip glibc-861a38359832548ffed4e38dc5f7fecd0a5a0264.tar.gz glibc-861a38359832548ffed4e38dc5f7fecd0a5a0264.tar.bz2 |
Suppress GCC 6 warning about ambiguous 'else' with -Wparentheses
(cherry picked from commit df1cf48777fe4cd81ad7fb09ecbe5b31432b7c1c)
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | nis/nis_call.c | 20 | ||||
-rw-r--r-- | stdlib/setenv.c | 26 |
3 files changed, 30 insertions, 21 deletions
@@ -1,3 +1,8 @@ +2016-04-15 Yvan Roux <yvan.roux@linaro.org> + + * stdlib/setenv.c (unsetenv): Fix ambiguous 'else'. + * nis/nis_call.c (nis_server_cache_add): Likewise. + 2016-06-01 Florian Weimer <fweimer@redhat.com> [BZ #19861] diff --git a/nis/nis_call.c b/nis/nis_call.c index 970415b..d98c385 100644 --- a/nis/nis_call.c +++ b/nis/nis_call.c @@ -680,16 +680,18 @@ nis_server_cache_add (const_nis_name name, int search_parent, /* Choose which entry should be evicted from the cache. */ loc = &nis_server_cache[0]; if (*loc != NULL) - for (i = 1; i < 16; ++i) - if (nis_server_cache[i] == NULL) - { + { + for (i = 1; i < 16; ++i) + if (nis_server_cache[i] == NULL) + { + loc = &nis_server_cache[i]; + break; + } + else if ((*loc)->uses > nis_server_cache[i]->uses + || ((*loc)->uses == nis_server_cache[i]->uses + && (*loc)->expires > nis_server_cache[i]->expires)) loc = &nis_server_cache[i]; - break; - } - else if ((*loc)->uses > nis_server_cache[i]->uses - || ((*loc)->uses == nis_server_cache[i]->uses - && (*loc)->expires > nis_server_cache[i]->expires)) - loc = &nis_server_cache[i]; + } old = *loc; *loc = new; diff --git a/stdlib/setenv.c b/stdlib/setenv.c index b9e0ba8..7a87d64 100644 --- a/stdlib/setenv.c +++ b/stdlib/setenv.c @@ -289,18 +289,20 @@ unsetenv (name) ep = __environ; if (ep != NULL) while (*ep != NULL) - if (!strncmp (*ep, name, len) && (*ep)[len] == '=') - { - /* Found it. Remove this pointer by moving later ones back. */ - char **dp = ep; - - do - dp[0] = dp[1]; - while (*dp++); - /* Continue the loop in case NAME appears again. */ - } - else - ++ep; + { + if (!strncmp (*ep, name, len) && (*ep)[len] == '=') + { + /* Found it. Remove this pointer by moving later ones back. */ + char **dp = ep; + + do + dp[0] = dp[1]; + while (*dp++); + /* Continue the loop in case NAME appears again. */ + } + else + ++ep; + } UNLOCK; |