Re: [PATCH] devtools: fix version variable not initialized

2024-07-08 Thread David Marchand
On Thu, Jun 27, 2024 at 4:28 PM David Marchand wrote: > On Wed, Apr 17, 2024 at 11:32 AM Dengdui Huang > wrote: > > > > The version variable is not initialized. Therefore, if the -V option > > is not specified, the value of $version is obtained from the context, > > which may cause the version m

Re: [PATCH] devtools: fix version variable not initialized

2024-06-27 Thread huangdengdui
On 2024/6/27 22:28, David Marchand wrote: > On Wed, Apr 17, 2024 at 11:32 AM Dengdui Huang > wrote: >> >> The version variable is not initialized. Therefore, if the -V option >> is not specified, the value of $version is obtained from the context, >> which may cause the version map parsing fail

Re: [PATCH] devtools: fix version variable not initialized

2024-06-27 Thread David Marchand
On Wed, Apr 17, 2024 at 11:32 AM Dengdui Huang wrote: > > The version variable is not initialized. Therefore, if the -V option > is not specified, the value of $version is obtained from the context, > which may cause the version map parsing failure. > > Fixes: 6edec7f202ac ("devtools: list symbols

[PATCH] devtools: fix version variable not initialized

2024-04-17 Thread Dengdui Huang
The version variable is not initialized. Therefore, if the -V option is not specified, the value of $version is obtained from the context, which may cause the version map parsing failure. Fixes: 6edec7f202ac ("devtools: list symbols by version") Cc: sta...@dpdk.org Signed-off-by: Dengdui Huang -