[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[SCM] GNU Mailutils branch, master, updated. release-2.2-525-g85c5f9a
From: |
Sergey Poznyakoff |
Subject: |
[SCM] GNU Mailutils branch, master, updated. release-2.2-525-g85c5f9a |
Date: |
Tue, 13 Dec 2011 19:22:45 +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=85c5f9a8decef2583674bc957caef1818e9628a9
The branch, master has been updated
via 85c5f9a8decef2583674bc957caef1818e9628a9 (commit)
from aed829a6c5a640f3e92015004b933db898e00d87 (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 85c5f9a8decef2583674bc957caef1818e9628a9
Author: Sergey Poznyakoff <address@hidden>
Date: Tue Dec 13 21:21:46 2011 +0200
Bugfixes.
* libmu_sieve/sieve.y (mu_sieve_compile): Initialize rc.
* python/libmu_py/sieve.c (api_sieve_machine_error_text): Fix
type of length.
-----------------------------------------------------------------------
Summary of changes:
libmu_sieve/sieve.y | 2 +-
python/libmu_py/sieve.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libmu_sieve/sieve.y b/libmu_sieve/sieve.y
index 897a194..8a1ee9e 100644
--- a/libmu_sieve/sieve.y
+++ b/libmu_sieve/sieve.y
@@ -606,7 +606,7 @@ mu_sieve_machine_finish (mu_sieve_machine_t mach)
int
mu_sieve_compile (mu_sieve_machine_t mach, const char *name)
{
- int rc;
+ int rc = 0;
mu_sieve_machine_begin (mach, name);
diff --git a/python/libmu_py/sieve.c b/python/libmu_py/sieve.c
index c32e5d7..293c3ab 100644
--- a/python/libmu_py/sieve.c
+++ b/python/libmu_py/sieve.c
@@ -120,7 +120,7 @@ api_sieve_machine_error_text (PyObject *self, PyObject
*args)
mu_stream_t estr;
mu_transport_t trans[2];
PyObject *retval;
- size_t length = 0;
+ mu_off_t length = 0;
if (!PyArg_ParseTuple (args, "O!", &PySieveMachineType, &py_mach))
return NULL;
hooks/post-receive
--
GNU Mailutils
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [SCM] GNU Mailutils branch, master, updated. release-2.2-525-g85c5f9a,
Sergey Poznyakoff <=