- fix buglet introduced in r17351 in find_param(). Closes #1193
This commit is contained in:
parent
e991303406
commit
cbd6e65744
@ -568,10 +568,11 @@ static int find_param(const char * const name)
|
|||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
int i = index_in_str_array(params, name);
|
int i = index_in_str_array(params, name);
|
||||||
if (i) {
|
if (i < 0)
|
||||||
|
return 0;
|
||||||
if (!(i == 4 || i == 5))
|
if (!(i == 4 || i == 5))
|
||||||
i |= 0x80;
|
i |= 0x80;
|
||||||
}
|
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user