mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-29 19:29:42 +02:00
Adding missing change for pointer_to_string exception catching
This commit is contained in:
@@ -131,7 +131,10 @@ class vnode(objects.StructType):
|
||||
return
|
||||
|
||||
if vname:
|
||||
ret.append(utility.pointer_to_string(vname, 255))
|
||||
try:
|
||||
ret.append(utility.pointer_to_string(vname, 255))
|
||||
except exceptions.InvalidAddressException:
|
||||
return
|
||||
|
||||
if int(vnodeobj.v_flag) & 0x000001 != 0 and int(vnodeobj.v_mount) != 0:
|
||||
if int(vnodeobj.v_mount.mnt_vnodecovered) != 0:
|
||||
|
||||
Reference in New Issue
Block a user