Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: ee5597d8884d08be435ebab69fcdfe9012b84ab8 https://github.com/Perl/perl5/commit/ee5597d8884d08be435ebab69fcdfe9012b84ab8 Author: Dagfinn Ilmari Mannsåker <ilm...@ilmari.org> Date: 2023-09-19 (Tue, 19 Sep 2023)
Changed paths: M class.c M op.c M perl.c M pp_ctl.c M toke.c Log Message: ----------- Remove non-null checks before op_free() The argument to op_free() is declared NULLOK, and the first thing it does is return if the op is null or already freed, so there's no point in callers checking for it.