23 Sep
2022
23 Sep
'22
10:07 a.m.
Huw Davies (@huw) commented about server/registry.c:
else file_set_error(); }
+static void load_app_registry( struct key *key, const char *filename ) +{ + WCHAR applicationhive_fullpath[12] = {'\\', 'R', 'E', 'G', 'I', 'S', 'T', 'R', 'Y', '\\', 'A'}; + WCHAR *key_fullpath; + data_size_t key_fullpath_size; + + /* check if we are loading in \REGISTRY\A */ + key_fullpath = key_get_full_name( (struct object*)key, &key_fullpath_size );
```suggestion:-0+0 key_fullpath = key_get_full_name( &key->obj, &key_fullpath_size ); ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/820#note_9117