public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] libfdt: Initialize the stack variable
@ 2017-08-30  5:15 tien.fong.chee at intel.com
  2017-08-30 13:31 ` J. William Campbell
  0 siblings, 1 reply; 9+ messages in thread
From: tien.fong.chee at intel.com @ 2017-08-30  5:15 UTC (permalink / raw)
  To: u-boot

From: Tien Fong Chee <tien.fong.chee@intel.com>

Report Coverity log:
The code uses a variable that has not
been initialized, leading to unpredictable
or unintended results.

Reported-by: Coverity (CID: 60519)
Signed-off-by: Tien Fong Chee <tien.fong.chee@intel.com>
---
 lib/libfdt/fdt_wip.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lib/libfdt/fdt_wip.c b/lib/libfdt/fdt_wip.c
index 45fb964..01adad0 100644
--- a/lib/libfdt/fdt_wip.c
+++ b/lib/libfdt/fdt_wip.c
@@ -115,7 +115,7 @@ int fdt_find_regions(const void *fdt, char * const inc[], int inc_count,
 		     struct fdt_region region[], int max_regions,
 		     char *path, int path_len, int add_string_tab)
 {
-	int stack[FDT_MAX_DEPTH];
+	int stack[FDT_MAX_DEPTH] = { 0 };
 	char *end;
 	int nextoffset = 0;
 	uint32_t tag;
-- 
1.7.7.4

^ permalink raw reply related	[flat|nested] 9+ messages in thread
* [U-Boot] [PATCH] libfdt: Initialize the stack variable
@ 2017-08-24  5:53 tien.fong.chee at intel.com
  2017-08-25  1:04 ` Tom Rini
  0 siblings, 1 reply; 9+ messages in thread
From: tien.fong.chee at intel.com @ 2017-08-24  5:53 UTC (permalink / raw)
  To: u-boot

From: Tien Fong Chee <tien.fong.chee@intel.com>

Report Coverity log:
The code uses a variable that has not
been initialized, leading to unpredictable
or unintended results.

Signed-off-by: Tien Fong Chee <tien.fong.chee@intel.com>
---
 lib/libfdt/fdt_wip.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lib/libfdt/fdt_wip.c b/lib/libfdt/fdt_wip.c
index 45fb964..01adad0 100644
--- a/lib/libfdt/fdt_wip.c
+++ b/lib/libfdt/fdt_wip.c
@@ -115,7 +115,7 @@ int fdt_find_regions(const void *fdt, char * const inc[], int inc_count,
 		     struct fdt_region region[], int max_regions,
 		     char *path, int path_len, int add_string_tab)
 {
-	int stack[FDT_MAX_DEPTH];
+	int stack[FDT_MAX_DEPTH] = { 0 };
 	char *end;
 	int nextoffset = 0;
 	uint32_t tag;
-- 
1.7.7.4

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2017-09-15 19:25 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-30  5:15 [U-Boot] [PATCH] libfdt: Initialize the stack variable tien.fong.chee at intel.com
2017-08-30 13:31 ` J. William Campbell
2017-09-05  3:41   ` Chee, Tien Fong
2017-09-05  3:58     ` J. William Campbell
2017-09-15 19:25       ` sjg at google.com
  -- strict thread matches above, loose matches on Subject: below --
2017-08-24  5:53 tien.fong.chee at intel.com
2017-08-25  1:04 ` Tom Rini
2017-08-25  4:01   ` Chee, Tien Fong
2017-08-30  5:01   ` Chee, Tien Fong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox