mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-24 16:28:23 -05:00
wpa_supplicant: Remove unfeasible conditions in config parsing
pos can't be NULL in wpa_global_config_parse_str(), so there is no point checking this, especially when pos was already dereferenced earlier. Remove the redundant conditions. Signed-off-by: Andrei Otcheretianski <andrei.otcheretianski@intel.com>
This commit is contained in:
parent
ff7e0c1cf7
commit
b4c7114cf5
@ -4469,9 +4469,7 @@ static int wpa_global_config_parse_str(const struct global_parse_data *data,
|
||||
prev_len = 0;
|
||||
|
||||
/* No change to the previously configured value */
|
||||
if ((!(*dst) && !pos) ||
|
||||
(*dst && pos && prev_len == len &&
|
||||
os_memcmp(*dst, pos, len) == 0))
|
||||
if (*dst && prev_len == len && os_memcmp(*dst, pos, len) == 0)
|
||||
return 1;
|
||||
|
||||
tmp = os_strdup(pos);
|
||||
|
Loading…
Reference in New Issue
Block a user