Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix Third Party Filtering #433

Open
wants to merge 8 commits into
base: dev
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
delete 3rd party payload properly #428
  • Loading branch information
F4FXL committed Dec 2, 2022
commit 55969617ea225150a05b7bef9bc2bb413aaacdaa
4 changes: 3 additions & 1 deletion src/pfilter.c
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,9 @@ int pfilter (int from_chan, int to_chan, char *filter, packet_t pp, int is_aprs)
return (0);
}

return pfilter(from_chan, to_chan, filter, pp_payload, is_aprs);
result = pfilter(from_chan, to_chan, filter, pp_payload, is_aprs);
ax25_delete(pp_payload);
return result;
}

pfstate.pp = pp;
Expand Down