Forgot to initialize optional parameter.

This commit is contained in:
Stuart Gathman
2009-06-09 01:54:44 +00:00
parent 73e1f469ce
commit 66f8a1d437
+4 -1
View File
@@ -35,6 +35,9 @@ $ python setup.py help
libraries=["milter","smutil","resolv"] libraries=["milter","smutil","resolv"]
* $Log$ * $Log$
* Revision 1.23 2009/05/29 20:44:58 customdesigned
* Typo SMFIP_NO constants.
*
* Revision 1.22 2009/05/29 19:53:36 customdesigned * Revision 1.22 2009/05/29 19:53:36 customdesigned
* Typo SMFIS_ALL_OPTS * Typo SMFIS_ALL_OPTS
* *
@@ -1188,7 +1191,7 @@ This function can only be called from the EOM callback.";
static PyObject * static PyObject *
milter_chgfrom(PyObject *self, PyObject *args) { milter_chgfrom(PyObject *self, PyObject *args) {
char *sender; char *sender;
char *params; char *params = NULL;
SMFICTX *ctx; SMFICTX *ctx;
PyThreadState *t; PyThreadState *t;