This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Mailutils".

http://git.savannah.gnu.org/cgit/mailutils.git/commit/?id=4f81c7692b1ebca0c1deec9f656fcbbed2b98fa3

The branch, master has been updated
       via  4f81c7692b1ebca0c1deec9f656fcbbed2b98fa3 (commit)
      from  1c291e80c094f3f7249659bc7b312622b64eb91c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 4f81c7692b1ebca0c1deec9f656fcbbed2b98fa3
Author: Sergey Poznyakoff <g...@gnu.org.ua>
Date:   Tue Nov 8 01:06:54 2011 +0200

    Bugfix
    
    * mu/dbm.c (add_records): Reference mu_strin before using it for
    input.

-----------------------------------------------------------------------

Summary of changes:
 mu/dbm.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/mu/dbm.c b/mu/dbm.c
index 7f275e2..5568bf4 100644
--- a/mu/dbm.c
+++ b/mu/dbm.c
@@ -1180,7 +1180,10 @@ add_records (int mode, int replace)
        }
     }
   else
-    instream = mu_strin;
+    {
+      instream = mu_strin;
+      mu_stream_ref (instream);
+    }
   
   rc = mu_filter_create_args (&flt, instream, "inline-comment",
                              MU_ARRAY_SIZE (flt_argv) - 1, flt_argv,


hooks/post-receive
-- 
GNU Mailutils

_______________________________________________
Commit-mailutils mailing list
Commit-mailutils@gnu.org
https://lists.gnu.org/mailman/listinfo/commit-mailutils

Reply via email to