Re: [dpdk-dev] [PATCH v2] example/vhost_blk: fix buffer not null terminated

2020-05-15 Thread Maxime Coquelin
On 5/15/20 4:45 PM, Jin Yu wrote: > In vhost_blk_bdev_construct: The string buffer may not have > a null terminator if the source string's length is equal to > the buffer size. > > Fixes: 91d3e2d42997 ("examples/vhost_blk: refactor to increase readability") > Cc: jin...@intel.com > > Signed-of

Re: [dpdk-dev] [PATCH v2] example/vhost_blk: fix buffer not null terminated

2020-05-15 Thread Ye Xiaolong
On 05/15, Jin Yu wrote: >In vhost_blk_bdev_construct: The string buffer may not have >a null terminator if the source string's length is equal to >the buffer size. > >Fixes: 91d3e2d42997 ("examples/vhost_blk: refactor to increase readability") >Cc: jin...@intel.com > >Signed-off-by: Jin Yu >--- >V

[dpdk-dev] [PATCH v2] example/vhost_blk: fix buffer not null terminated

2020-05-15 Thread Jin Yu
In vhost_blk_bdev_construct: The string buffer may not have a null terminator if the source string's length is equal to the buffer size. Fixes: 91d3e2d42997 ("examples/vhost_blk: refactor to increase readability") Cc: jin...@intel.com Signed-off-by: Jin Yu --- V2 - update the commit message ---