mirror of https://github.com/thesofproject/sof.git
97e4232f7f
Coverity issue: 254842 Uninitialized scalar variable The variable will contain an arbitrary value left from earlier computations. In parse_page_descriptors: Use of an uninitialized variable (CWE-457) The elem.src variable is not initialized, but in dma_trace_host_buffer() the code reads this initialized value. Break *e = *elem; in e->dest = elem->dest; e->size = elem->size; to only access relevant fields. Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> |
||
---|---|---|
src | ||
.gitignore | ||
LICENCE | ||
Makefile.am | ||
README | ||
autogen.sh | ||
build-all.sh | ||
configure.ac | ||
version.sh |
README
Build Instructions 1) Run "autogen.sh" 2) Run the following configure based on your platform. Baytrail :- ./configure --with-arch=xtensa --with-platform=baytrail --with-root-dir=$PWD/../xtensa-root/xtensa-byt-elf --host=xtensa-byt-elf Cherrytrail :- ./configure --with-arch=xtensa --with-platform=cherrytrail --with-root-dir=$PWD/../xtensa-root/xtensa-byt-elf --host=xtensa-byt-elf 3) make 4) make bin