Error: RESOURCE_LEAK (CWE-772):
lldpad-1.1.0/lldp_8021qaz_cmds.c:1153: alloc_fn: Storage is returned from allocation function "strdup".
lldpad-1.1.0/lldp_8021qaz_cmds.c:1153: var_assign: Assigning: "parse" = storage returned from "strdup(app)".
lldpad-1.1.0/lldp_8021qaz_cmds.c:1156: noescape: Resource "parse" is not freed or pointed-to in "strtok".
lldpad-1.1.0/lldp_8021qaz_cmds.c:1162: leaked_storage: Variable "parse" going out of scope leaks the storage it points to.
# 1160| app_tuple = strtok(NULL, ",");
# 1161| if (!app_tuple)
# 1162|-> break;
# 1163| sel = atoi(app_tuple);
# 1164|