> -----Original Message----- > From: [email protected] <[email protected]> > Sent: Tuesday, May 2, 2023 4:49 PM > To: [email protected] > Cc: NBU-Contact-Thomas Monjalon (EXTERNAL) <[email protected]>; > [email protected]; [email protected]; > [email protected]; Jerin Jacob <[email protected]>; > [email protected] > Subject: [dpdk-dev] [PATCH v1] examples/ip_pipeline: fix build issue with > GCC 13 > > From: Jerin Jacob <[email protected]> > > Fix the following build issue by initializing req to NULL for > the local variable. > > In function 'thread_msg_handle', inlined from 'thread_main' at > ../examples/ip_pipeline/thread.c:3130:6: > ../examples/ip_pipeline/thread.c:535:20: warning: 'req' may be used > uninitialized [-Wmaybe-uninitialized] > 535 | if (req == NULL) > | ^ > ../examples/ip_pipeline/thread.c: In function 'thread_main': > ../examples/ip_pipeline/thread.c:433:32: note: 'req' was declared here > 433 | struct thread_msg_req *req; > > Bugzilla ID: 1220 > Fixes: a8bd581de397 ("examples/ip_pipeline: add thread runtime") > Cc: [email protected] > > Signed-off-by: Jerin Jacob <[email protected]> > ---
Resolves the warning I see in Bugzilla 1220, thanks. Now I see a failure in another example app: """ examples/ntb/ntb_fwd.c:945:23: error: 'rte_rawdev_xstats_get' accessing 8 bytes in a region of size 0 [-Werror=stringop-overflow=] """ Will open a separate issue for that. Tested-by: Ali Alnubani <[email protected]>

