Re: [Dbmail-dev] svn HEAD (2117) minor patch

2006-05-15 Thread Aaron Stone
On Sun, 2006-05-14 at 17:45 +0200, Paul J Stevens wrote: Aaron, A brief heads up. if (! (somevar = g_new0(char,STRLEN))) // handle memory error this is unnecessary. Glib will exit() if g_new0 fail. No need to handle that in the code. Oh!

Re: [Dbmail-dev] svn HEAD (2117) minor patch

2006-05-14 Thread Aaron Stone
Thanks! There was even one more in dbmail-imapsession, if !ln failed then re was not freed, about three lines above your fix. Now in SVN. Aaron On Sat, 2006-05-13 at 15:28 -0400, Leif Jackson wrote: Guys, Hey looking real good on the current svn HEAD (rev 2117). I belive I found a few

Re: [Dbmail-dev] svn HEAD (2117) minor patch

2006-05-14 Thread Leif Jackson
Cool! :) -leif On Sat, May 13, 2006 9:43 pm, Aaron Stone wrote: Thanks! There was even one more in dbmail-imapsession, if !ln failed then re was not freed, about three lines above your fix. Now in SVN. Aaron On Sat, 2006-05-13 at 15:28 -0400, Leif Jackson wrote: Guys, Hey looking

Re: [Dbmail-dev] svn HEAD (2117) minor patch

2006-05-14 Thread Paul J Stevens
Aaron, A brief heads up. if (! (somevar = g_new0(char,STRLEN))) // handle memory error this is unnecessary. Glib will exit() if g_new0 fail. No need to handle that in the code. Leif Jackson wrote: Cool! :) -leif On Sat, May 13, 2006 9:43 pm, Aaron Stone wrote: Thanks! There was