Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: ea050918f472ad0930dc7bb8dccee8eb8ce68003 https://github.com/Perl/perl5/commit/ea050918f472ad0930dc7bb8dccee8eb8ce68003 Author: Dagfinn Ilmari Mannsåker <ilm...@ilmari.org> Date: 2023-09-19 (Tue, 19 Sep 2023)
Changed paths: M class.c Log Message: ----------- Remove pointless use-after-free assert While op_free() doesn't actually free the op, but adds it to the slab's freelist and marks it as freed, that's not obvious when reading the code. Also, if op_free() fails to do its job, we have bigger problems than just here.