a17842c142
This error can be raised:
lib/librte_kni/rte_kni.c:531:15: error:
'req' may be used uninitialized in this function
It should not happen because kni_fifo_get() would return 0 if
req is not initialized, so the function would return before using req.
But GCC complains about it in -O1 optimization,
and a NULL initialization is harmless here.
Fixes:
|
||
---|---|---|
.. | ||
Makefile | ||
meson.build | ||
rte_kni_fifo.h | ||
rte_kni_version.map | ||
rte_kni.c | ||
rte_kni.h |