commit | e83b22218518ffc4c48126fb2224431511c99564 | [log] [tgz] |
---|---|---|
author | xypron.glpk@gmx.de <xypron.glpk@gmx.de> | Mon May 08 20:23:54 2017 +0200 |
committer | Tom Rini <trini@konsulko.com> | Fri May 12 08:37:17 2017 -0400 |
tree | a16f831faef69493874e8c789f0929addd76057f | |
parent | 050fe9e9daa92ff288d54f7d6f7d8aca2237978a [diff] |
env: avoid possible NULL pointer access env_attr_lookup call env_attr_walk with callback = regex_callback. In env_attr_walk attributes = strchr(entry_cpy, ENV_ATTR_SEP) will return NULL if ENV_ATTR_SEP is not found. In the aftermath regex_callback may call strlen(attributes) with a NULL value which will lead to a failure. The problem was indicated by scan-clam. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>