Asterisk descriptor leak patch (*not* chan_sip.c)

2015-01-29 Thread Ed Hynan
Asterisk does its own TZ time formatting rather than using the C library functions. This seems to be so that it can watch the zoneinfo files for changes (TZ data updates are not very uncommon on GNU/Linux systems). To implement file watching there is cpp conditional code for Linux inotify, else

misc/cdrdao, 6.2 stable, amd64, segfault, patch

2018-03-07 Thread Ed Hynan
cdrdao would trigger SIGSEGV (or SIGILL with -ggdb) on reading a 'toc' file during 'write' or 'simulate' operations. Two functions in trackdb/Track.cc were missing return statements, causing error in stack frame handling on return. (Probably new behavior with clang.) This small patch makes

net/wmnetload has a memory leak [patch]

2018-12-19 Thread Ed Hynan
net/wmnetload has a memory leak [patch] wmnetload (6.4 release) repeatedly calls getifaddrs(3) without freeifaddrs. The patch here fixes and would replace net/wmnetload/patches/patch-src_ifstat_openbsd_c not apply over it. Also fixes a compile warning from strcmp() w/o -Ed Hynan # patch

Re: net/wmnetload has a memory leak [patch]

2018-12-19 Thread Ed Hynan
On Wed, 19 Dec 2018, Jeremie Courreges-Anglas wrote: > On Wed, Dec 19 2018, Ed Hynan wrote: > > net/wmnetload has a memory leak [patch] > > > > wmnetload (6.4 release) repeatedly calls getifaddrs(3) > > without freeifaddrs. > > Indeed. > > > The