mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-22 01:24:51 +02:00
removed debugging print statements
This commit is contained in:
@@ -419,7 +419,6 @@ class list_head(objects.StructType, collections.abc.Iterable):
|
||||
try:
|
||||
link = getattr(self, direction).dereference()
|
||||
except exceptions.InvalidAddressException:
|
||||
print("return here")
|
||||
return
|
||||
|
||||
if not sentinel:
|
||||
@@ -435,7 +434,6 @@ class list_head(objects.StructType, collections.abc.Iterable):
|
||||
try:
|
||||
link = getattr(self, direction).dereference()
|
||||
except exceptions.InvalidAddressException:
|
||||
print("break here")
|
||||
break
|
||||
|
||||
def __iter__(self) -> Iterator[interfaces.objects.ObjectInterface]:
|
||||
|
||||
Reference in New Issue
Block a user