Module: wine Branch: master Commit: 2908537f3fe4fe583b16a5c21c5c222fdb0dd0ee URL: https://gitlab.winehq.org/wine/wine/-/commit/2908537f3fe4fe583b16a5c21c5c222...
Author: Piotr Caban piotr@codeweavers.com Date: Tue Aug 1 17:58:41 2023 +0200
winedump: Don't dump volatile keys from regf file.
---
tools/winedump/reg.c | 2 -- 1 file changed, 2 deletions(-)
diff --git a/tools/winedump/reg.c b/tools/winedump/reg.c index cce45fdb27a..baa298784e3 100644 --- a/tools/winedump/reg.c +++ b/tools/winedump/reg.c @@ -356,8 +356,6 @@ static BOOL dump_key(unsigned int hive_off, unsigned int off)
if (key->sub_keys) ret = dump_subkeys(hive_off, key->sub_keys_list_off); - if (ret && key->volatile_sub_keys) - ret = dump_subkeys(hive_off, key->volatile_sub_keys_list_off);
path_len -= key->name_size + 1; path[path_len] = 0;