acrn-hypervisor/hypervisor/boot
Mingqiang Chi deb44402e3 hv:fix "missing for discarded return value" for memcpy_s and strcpy_s
It will print error information inside memcpy_s if
the parameteter is invalid, the caller can not check
the return value for memcpy_s/strcpy_s/strncpy_s
code like this:
int a(void) {
return 0;
}
int b(void){
a();
}
fix as follow:
int a(void) {
return 0;
}
int b(void){
(void)a();
}

Signed-off-by: Mingqiang Chi <mingqiang.chi@intel.com>
2018-07-09 09:22:37 +08:00
..
include HV: treewide: enforce unsignedness of pcpu_id 2018-06-21 16:59:21 +08:00
sbl hv:fix "missing for discarded return value" for memcpy_s and strcpy_s 2018-07-09 09:22:37 +08:00
acpi.c HV:misc:add suffix U to the numeric constant 2018-07-05 11:29:46 +08:00
dmar_parse.c Revert "hv: More changes to enable GPU passthru" 2018-07-05 11:06:47 +08:00