Re: [tin 1.9.x] new snapshots
Dennis Preiser <[email protected]> Sun, 1 Feb 2009 10:46:56 +0100
| Newsgroups | gmane.network.tin.devel |
|---|---|
| Message-ID | <[email protected]> |
On 27.01.2009, at 15:36, Urs Janßen wrote: > I've made new snapshots including even more attributes fixes and the > configure fixes. the code seems to be stable enough for the next > 1.9.x release - so if there arn't any serious bugreports within the > next few weeks I'll release 1.9.4. and if we manage to fix some more > bugs (and add an attributes 'M'enu and SASL) we might see tin 2.0 > at the > end of the year.... I encountered a bug in memory.c I introduced with my latest patch. Here is the fix. Dennis --- tin-1.9.4/src/memory.c 2009-01-25 19:59:14.000000000 +0100 +++ tin-1.9.4_r0/src/memory.c 2009-02-01 10:12:10.000000000 +0100 @@ -407,7 +407,6 @@ free_scopes_arrays( } FreeAndNull(scopes); num_scope = -1; - num_active = -1; } @@ -435,6 +434,7 @@ free_active_arrays( } FreeAndNull(active); } + num_active = -1; }