Oops! Missing options argument pointer for addrcpt.

This commit is contained in:
Stuart Gathman
2009-02-06 04:28:08 +00:00
parent b51c08ba3a
commit 780ac63ebe
2 changed files with 8 additions and 3 deletions
+4 -2
View File
@@ -142,8 +142,10 @@ def connectcallback(ctx,hostname,family,hostaddr):
def closecallback(ctx):
m = ctx.getpriv()
if not m: return CONTINUE
rc = m.close()
m._setctx(None) # release milterContext
try:
rc = m.close()
finally:
m._setctx(None) # release milterContext
return rc
def dictfromlist(args):