CVSROOT: /cvs Module name: src Changes by: clau...@cvs.openbsd.org 2024/09/10 03:38:45
Modified files: usr.sbin/bgpd : rde.c rde_attr.c rde_sets.c Log message: Be more careful with aspath that have 0 length (aka the empty AS_PATH). Again malloc(0) is not portable and calling memcpy with a NULL pointer and a 0 length is not allowed by the C standard. OK tb@