summaryrefslogtreecommitdiff
path: root/common/env_callback.c
diff options
context:
space:
mode:
authorPeng Fan <peng.fan@nxp.com>2015-12-23 04:07:24 (GMT)
committerTom Rini <trini@konsulko.com>2016-01-04 17:25:35 (GMT)
commit5a6894397a657edec5d0cf4e20968cc66a368c51 (patch)
tree8c3329a5f32d195b2b9161b72000f619c35a804d /common/env_callback.c
parent09a788624dbe32aeeb0d74c97c0965303eb96d8c (diff)
downloadu-boot-fsl-qoriq-5a6894397a657edec5d0cf4e20968cc66a368c51.tar.xz
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>
Diffstat (limited to 'common/env_callback.c')
-rw-r--r--common/env_callback.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/env_callback.c b/common/env_callback.c
index f4d3dbd..1957cc1 100644
--- a/common/env_callback.c
+++ b/common/env_callback.c
@@ -97,6 +97,7 @@ static int set_callback(const char *name, const char *value, void *priv)
e.key = name;
e.data = NULL;
+ e.callback = NULL;
hsearch_r(e, FIND, &ep, &env_htab, 0);
/* does the env variable actually exist? */