diff options
author | Peng Fan <peng.fan@nxp.com> | 2015-12-23 12:07:24 +0800 |
---|---|---|
committer | guoyin.chen <guoyin.chen@freescale.com> | 2016-03-04 15:35:53 +0800 |
commit | 9ec7743e9cd2227ca1bb57f1581dacaad212cbcd (patch) | |
tree | 1f0666d99e82128ee247206a87093e7654178f88 /common/env_flags.c | |
parent | d533473490c7a88fd9cc353b900c13d1ecc8f9b6 (diff) | |
download | u-boot-imx-9ec7743e9cd2227ca1bb57f1581dacaad212cbcd.zip u-boot-imx-9ec7743e9cd2227ca1bb57f1581dacaad212cbcd.tar.gz u-boot-imx-9ec7743e9cd2227ca1bb57f1581dacaad212cbcd.tar.bz2 |
common: env: initialize scalar variable
Before calling hsearch_r, initialize callback entry to NULL.
Coverity log:
"
Uninitialized scalar variable (UNINIT)
uninit_use_in_call: Using uninitialized value e.
Field e.callback is uninitialized when calling hsearch_r.
"
Reported-by: Coverity
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Cc: Tom Rini <trini@konsulko.com>
Cc: Simon Glass <sjg@chromium.org>
(cherry picked from commit 5a6894397a657edec5d0cf4e20968cc66a368c51)
Diffstat (limited to 'common/env_flags.c')
-rw-r--r-- | common/env_flags.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/env_flags.c b/common/env_flags.c index 985f92e..815aff9 100644 --- a/common/env_flags.c +++ b/common/env_flags.c @@ -441,6 +441,7 @@ static int set_flags(const char *name, const char *value) e.key = name; e.data = NULL; + e.callback = NULL; hsearch_r(e, FIND, &ep, &env_htab, 0); /* does the env variable actually exist? */ |