Posted on Thu, 28 Sep 2006 05:17:50 +0200
by author bugtrack <[EMAIL PROTECTED]>
> The following issue has been RESOLVED. 
> ====================================================================== 
> http://www.dbmail.org/mantis/view.php?id=419 
> Patch accepted, thanks! 

Aaron, the change you committed to dbmail_mailbox_search() was
insufficient to suppress GLib warnings, because by calling
g_tree_nnodes(NULL) generates such warnings, so that the change should
be

  if (self->ids == NULL)
    TRACE("found %d ids", 0); /* or TRACE("found no ids"); */
  else
    TRACE(..., g_tree_nnodes(self->ids));

Patch attached. Also the compile-time warnings mentioned by Jorge should
be fixed.

-- 
UEMURA (fka. MAENAKA) Tetsuya <[EMAIL PROTECTED]>

Attachment: patch-dbmail-mailbox.c
Description: Binary data

Reply via email to