mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-13 05:07:38 +02:00
remove another int cast from netstat
This commit is contained in:
@@ -41,7 +41,7 @@ class Netstat(plugins.PluginInterface):
|
||||
except exceptions.PagedInvalidAddressException:
|
||||
continue
|
||||
|
||||
family = int(socket.get_family())
|
||||
family = socket.get_family()
|
||||
|
||||
if family == 1:
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user