summaryrefslogtreecommitdiff
path: root/pysnmp/proto/api/v1.py
diff options
context:
space:
mode:
Diffstat (limited to 'pysnmp/proto/api/v1.py')
-rw-r--r--pysnmp/proto/api/v1.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/pysnmp/proto/api/v1.py b/pysnmp/proto/api/v1.py
index f13920e7..e8641deb 100644
--- a/pysnmp/proto/api/v1.py
+++ b/pysnmp/proto/api/v1.py
@@ -80,7 +80,9 @@ class PDUAPI(object):
2, self._errorIndex, verifyConstraints=False, matchTags=False,
matchConstraints=False)
- pdu.setComponentByPosition(3)
+ varBindList = pdu.setComponentByPosition(3).getComponentByPosition(3)
+ varBindList.clear()
+
@staticmethod
def getRequestID(pdu):
@@ -217,7 +219,8 @@ class TrapPDUAPI(object):
4, self._zeroTime, verifyConstraints=False, matchTags=False,
matchConstraints=False)
- pdu.setComponentByPosition(5)
+ varBindList = pdu.setComponentByPosition(5).getComponentByPosition(5)
+ varBindList.clear()
@staticmethod
def getEnterprise(pdu):