commit-mailutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Mailutils branch, master, updated. release-2.2-748-geee0318


From: Sergey Poznyakoff
Subject: [SCM] GNU Mailutils branch, master, updated. release-2.2-748-geee0318
Date: Sat, 19 Dec 2015 15:07:46 +0000

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=eee03180d207b47daf75fe3b46a0a25d8df1cc4a

The branch, master has been updated
       via  eee03180d207b47daf75fe3b46a0a25d8df1cc4a (commit)
      from  183ada2bf59176462c97a5026407fc4273a2c251 (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 eee03180d207b47daf75fe3b46a0a25d8df1cc4a
Author: Sergey Poznyakoff <address@hidden>
Date:   Sat Dec 19 17:06:16 2015 +0200

    Bugfix in wordsplit test program
    
    * libmailutils/tests/wsp.c (make_env_kv): Fix array size.

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

Summary of changes:
 libmailutils/tests/wsp.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libmailutils/tests/wsp.c b/libmailutils/tests/wsp.c
index 7c30971..8f82c20 100644
--- a/libmailutils/tests/wsp.c
+++ b/libmailutils/tests/wsp.c
@@ -146,7 +146,7 @@ make_env_kv ()
   for (i = 0; environ[i]; i++)
     ;
 
-  size = (i - 1) * 2 + 1;
+  size = i * 2 + 1;
   newenv = mu_calloc (size, sizeof (newenv[0]));
 
   for (i = j = 0; environ[i]; i++)


hooks/post-receive
-- 
GNU Mailutils



reply via email to

[Prev in Thread] Current Thread [Next in Thread]