X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvlibapi%2Fapi_shared.c;h=d2f17593284f1079d54cd71e7c01cadcc0e52177;hb=0b7200f7eef8881018c1e6dfb7ef10cf1e221362;hp=0ea52802bb749d3268ee2ee13288c11ea23a63f8;hpb=0e8ec6468bf77c699210216a4952cd27e1b45166;p=vpp.git diff --git a/src/vlibapi/api_shared.c b/src/vlibapi/api_shared.c index 0ea52802bb7..d2f17593284 100644 --- a/src/vlibapi/api_shared.c +++ b/src/vlibapi/api_shared.c @@ -1060,8 +1060,9 @@ vl_api_from_api_to_new_vec (void *mp, vl_api_string_t * astr) u8 *v = 0; if (vl_msg_api_max_length (mp) < clib_net_to_host_u32 (astr->length)) - return format (0, "insane astr->length %u%c", - clib_net_to_host_u32 (astr->length), 0); + return format (0, "Invalid astr->length %u > max (%u)%c", + clib_net_to_host_u32 (astr->length), + vl_msg_api_max_length (mp), 0); vec_add (v, astr->buf, clib_net_to_host_u32 (astr->length)); return v; }