mirror of
https://github.com/openvswitch/ovs
synced 2025-08-30 22:05:19 +00:00
netdev-dpdk: Fix dead initialization reported by clang.
Clang reports that value stored to 'tok' during initialization is never read. Signed-off-by: Bhanuprakash Bodireddy <bhanuprakash.bodireddy@intel.com> Acked-by: Daniele Di Proietto <diproiettod@vmware.com>
This commit is contained in:
committed by
Daniele Di Proietto
parent
29ee0f2c1e
commit
27373420c8
@@ -3069,7 +3069,7 @@ extra_dpdk_args(const char *ovs_extra_config, char ***argv, int argc)
|
||||
{
|
||||
int ret = argc;
|
||||
char *release_tok = xstrdup(ovs_extra_config);
|
||||
char *tok = release_tok, *endptr = NULL;
|
||||
char *tok, *endptr = NULL;
|
||||
|
||||
for (tok = strtok_r(release_tok, " ", &endptr); tok != NULL;
|
||||
tok = strtok_r(NULL, " ", &endptr)) {
|
||||
|
Reference in New Issue
Block a user