moonchen opened a new pull request, #13303: URL: https://github.com/apache/trafficserver/pull/13303
`createRequestString()`, used by the header_rewrite `set-body-from` operator, fetches the request URL with `TSUrlStringGet()`, which returns a `TSmalloc()`-allocated buffer the caller owns. That buffer was never freed, so every non-internal transaction matching a `set-body-from` rule leaked one URL-sized allocation, growing unbounded over time. Free it, mirroring the existing owned-pointer handling in `ConditionUrl`. 🤖 Generated with [Claude Code](https://claude.com/claude-code) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
