From 13f165d90a5650f1b2d2f7eb3c5cbc96f358b049 Mon Sep 17 00:00:00 2001 From: elie Date: Fri, 30 Jan 2015 17:01:58 +0000 Subject: possible memory leak fix --- pysnmp/proto/rfc3412.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pysnmp/proto/rfc3412.py b/pysnmp/proto/rfc3412.py index 9ddfbeb..d0a9ada 100644 --- a/pysnmp/proto/rfc3412.py +++ b/pysnmp/proto/rfc3412.py @@ -543,6 +543,7 @@ class MsgAndPduDispatcher: if k in snmpEngine.messageProcessingSubsystems: mpHandler = snmpEngine.messageProcessingSubsystems[k] mpHandler.releaseStateInformation(sendPduHandle) + self.__cache.pop(sendPduHandle) # Cache expiration stuff -- cgit v1.2.1