vppinfra: fix vec_max_len 36/30436/5
authorFlorin Coras <fcoras@cisco.com>
Wed, 16 Dec 2020 04:35:11 +0000 (20:35 -0800)
committerFlorin Coras <florin.coras@gmail.com>
Wed, 16 Dec 2020 16:24:18 +0000 (16:24 +0000)
Return 0 if the supplied vector pointer is NULL.

Type: fix

Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: Icb0aab70e0b7c9c1ddcf607c9dfb7e5715f177d1

src/vppinfra/vec_bootstrap.h

index 5396807..5cf5d3b 100644 (file)
@@ -171,7 +171,8 @@ u32 vec_len_not_inline (void *v);
 })
 
 /** \brief Total number of elements that can fit into vector. */
-#define vec_max_len(v) (vec_capacity(v,0) / sizeof (v[0]))
+#define vec_max_len(v)                                                                 \
+  ((v) ? (vec_capacity (v,0) - vec_header_bytes (0)) / sizeof (v[0]) : 0)
 
 /** \brief Set vector length to a user-defined value */
 #ifndef __COVERITY__           /* Coverity gets confused by ASSERT() */