Fix "Although the value stored to 'pos' is used in the enclosing expression, the value is never actually read from 'pos'"
This commit is contained in:
parent
b9503b64c3
commit
c546aafc0a
|
@ -936,13 +936,11 @@ static int is_public_suffix(const psl_ctx_t *psl, const char *domain, int type)
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((suffix.label = strchr(suffix.label, '.'))) {
|
if ((suffix.label = strchr(suffix.label, '.'))) {
|
||||||
int pos;
|
|
||||||
|
|
||||||
suffix.label++;
|
suffix.label++;
|
||||||
suffix.length = strlen(suffix.label);
|
suffix.length = strlen(suffix.label);
|
||||||
suffix.nlabels--;
|
suffix.nlabels--;
|
||||||
|
|
||||||
rule = vector_get(psl->suffixes, (pos = vector_find(psl->suffixes, &suffix)));
|
rule = vector_get(psl->suffixes, vector_find(psl->suffixes, &suffix));
|
||||||
|
|
||||||
if (rule) {
|
if (rule) {
|
||||||
/* check for correct rule type */
|
/* check for correct rule type */
|
||||||
|
|
Loading…
Reference in New Issue