Skip to content
Snippets Groups Projects
Commit 66f8a1d4 authored by Stuart Gathman's avatar Stuart Gathman
Browse files

Forgot to initialize optional parameter.

parent 73e1f469
No related branches found
No related tags found
No related merge requests found
...@@ -35,6 +35,9 @@ $ python setup.py help ...@@ -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."; ...@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment