vppinfra: fix coverity issue 205691 in pmalloc
set the address to MMAP_FAILED if mmap has failed, so that we do not attempt to free it in the error handling path. Change-Id: I6e6b51a365fb68086dc20aa40a676a36af59a3ba Type: fix Signed-off-by: Andrew Yourtchenko <ayourtch@gmail.com>
This commit is contained in:

committed by
Dave Barach

parent
418ebb711e
commit
9ce3523365
@@ -331,6 +331,7 @@ pmalloc_map_pages (clib_pmalloc_main_t * pm, clib_pmalloc_arena_t * a,
|
||||
pm->error = clib_error_return_unix (0, "failed to mmap %u pages at %p "
|
||||
"fd %d numa %d flags 0x%x", n_pages,
|
||||
va, a->fd, numa_node, mmap_flags);
|
||||
va = MAP_FAILED;
|
||||
goto error;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user