CVSROOT: /cvs Module name: src Changes by: [email protected] 2019/01/10 12:21:02
Modified files:
usr.sbin/vmd : vioqcow2.c
Log message:
an alloca() snuck into the tree. We don't use alloca() in our tree unless
it is entirely unavoidable (for example libc/*/exec.c), because any erroneous
size controlled by an attacker turns into a known-location object placement
in a very dangerous region. So use malloc() instead.
