Details
-
Bug
-
Status: Resolved
-
Resolution: Done
-
None
-
None
-
None
-
Operating System: All
Platform: All
-
7
Description
Following method from ArpHandler.java is not unsetting DataPacketService instance
void unsetDataPacketService(IDataPacketService s) {
if (this.dataPacketService == s)
}
It should be doing
this.dataPacketService = null;
Above line will fix this bug.