transmission
transmission copied to clipboard
two event objects leaked during shutdown of transmission-daemon
What is the issue?
Potential memory leak in daemon-posix.cc line 73 Calling event_new() without calling event_free() to free the memory will cause a memory leak.
Doc says "Deallocate a struct event * returned by event_new()."

Which application of Transmission?
transmission-daemon
Which version of Transmission?
No response
This is correct and the bug ought to get fixed for cleanliness' sake & to make leak detectors happy -- but FWIW but in practice this is called twice during daemon setup and the allocated events exist for the lifespan of the daemon session, so end users won't see any loss of memory due to this bug.
Fixed by #5695.