clang: fix malloc() warning with assert
Change-Id: I989d2655622a9f11f4a0a2994014e42822587ecd Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com> Reviewed-on: http://openocd.zylin.com/41 Tested-by: jenkins Reviewed-by: Øyvind Harboe <oyvindharboe@gmail.com>__archive__
parent
0577ba8331
commit
4e079d18bf
|
@ -172,6 +172,7 @@ static int Jim_Command_drscan(Jim_Interp *interp, int argc, Jim_Obj *const *args
|
||||||
}
|
}
|
||||||
|
|
||||||
num_fields = (argc-2)/2;
|
num_fields = (argc-2)/2;
|
||||||
|
assert(num_fields > 0);
|
||||||
fields = malloc(sizeof(struct scan_field) * num_fields);
|
fields = malloc(sizeof(struct scan_field) * num_fields);
|
||||||
for (i = 2; i < argc; i += 2)
|
for (i = 2; i < argc; i += 2)
|
||||||
{
|
{
|
||||||
|
|
|
@ -473,6 +473,8 @@ static int image_elf_read_headers(struct image *image)
|
||||||
if ((field32(elf, elf->segments[i].p_type) == PT_LOAD) && (field32(elf, elf->segments[i].p_filesz) != 0))
|
if ((field32(elf, elf->segments[i].p_type) == PT_LOAD) && (field32(elf, elf->segments[i].p_filesz) != 0))
|
||||||
image->num_sections++;
|
image->num_sections++;
|
||||||
|
|
||||||
|
assert(image->num_sections > 0);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* some ELF linkers produce binaries with *all* the program header
|
* some ELF linkers produce binaries with *all* the program header
|
||||||
* p_paddr fields zero (there can be however one loadable segment
|
* p_paddr fields zero (there can be however one loadable segment
|
||||||
|
|
Loading…
Reference in New Issue