diff --git a/API_CHANGES.md b/API_CHANGES.md index 4e1820eff..274d1d8bb 100644 --- a/API_CHANGES.md +++ b/API_CHANGES.md @@ -6,11 +6,11 @@ When an API feature or function is removed or changed, the major version is bump 2.1.0 ===== -Add in the linux `task.get_threads` method added to the API. +Add in the linux `task.get_threads` method to the API. 2.0.3 ===== -`DEVICE_OBJECT.get_attached_devices` and `DRIVER_OBJECT.get_devices` added to the API. +Add in the windows `DEVICE_OBJECT.get_attached_devices` and `DRIVER_OBJECT.get_devices` methods to the API. 2.0.2 ===== diff --git a/volatility3/framework/symbols/windows/extensions/__init__.py b/volatility3/framework/symbols/windows/extensions/__init__.py index e7da0316d..69e8ba94e 100755 --- a/volatility3/framework/symbols/windows/extensions/__init__.py +++ b/volatility3/framework/symbols/windows/extensions/__init__.py @@ -719,7 +719,7 @@ class EPROCESS(generic.GenericIntelProcess, pool.ExecutiveObject): env = envar[:split_index] var = envar[split_index + 1:] - # Exlude parse problem with some types of env + # Exclude parse problem with some types of env if env and var: yield env, var