You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The original testcase triggers a separate issue on 32-bit machines:
#4527 and it should probably be
tested separately. The new testcase triggers the issue fixed in
1935723 only:
```sh
>>> assert l[0][LDAP].summary() == "LDAP"
Traceback (most recent call last):
File "<input>", line 2, in <module>
File "scapy/scapy/packet.py", line 1692, in summary
return self._do_summary()[1]
^^^^^^^^^^^^^^^^^^
File "scapy/scapy/packet.py", line 1669, in _do_summary
ret = self.mysummary()
^^^^^^^^^^^^^^^^
File "scapy/scapy/layers/ldap.py", line 736, in mysummary
self.messageID.val,
^^^^^^^^^^^^^^^^^^
AttributeError: 'NoneType' object has no attribute 'val'
```
0 commit comments