kvargs: fix invalid token parsing on FreeBSD
authorOlivier Matz <olivier.matz@6wind.com>
Wed, 29 Apr 2020 13:17:00 +0000 (15:17 +0200)
committerDavid Marchand <david.marchand@redhat.com>
Wed, 6 May 2020 13:22:19 +0000 (15:22 +0200)
commitb2aa2c9723796d81cb9216f3a5c5e195796985fa
treef45333723041334a84a6ed3b50c5187bfa84acac
parentb2f8a22e79dc6fbdf40d6f3ec1a24a37438c7840
kvargs: fix invalid token parsing on FreeBSD

The behavior of strtok_r() is not the same between GNU libc and FreeBSD
libc: in the first case, the context is set to "" when the last token is
returned, while in the second case it is set to NULL.

On FreeBSD, the current code crashes because we are dereferencing a NULL
pointer (ctx1). Fix it by first checking if it is NULL. This works with
both GNU and FreeBSD libc.

Fixes: ffcf831454a9 ("kvargs: fix buffer overflow when parsing list")
Cc: stable@dpdk.org
Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
Tested-by: Zhimin Huang <zhiminx.huang@intel.com>
lib/librte_kvargs/rte_kvargs.c