CVSROOT: /cvs Module name: src Changes by: [email protected] 2024/02/02 09:14:51
Modified files:
usr.sbin/bgpd : util.c
Log message:
aspath_inflate() can be called with an empty ASPATH.
In this case ibuf_size(in) is 0 and the ibuf_open() fails because
right now 0 sized ibufs are not allowed. Add + 1 to the size calculation
as a workaround.
OK tb@
