* src/w32reg.c (w32_get_string_resource): The argument V_RDB
is a 'char **', not a 'char *'. This fixes -xrm handling on
MS-Windows, broken by conversion of x_get_string_resource to
terminal-specific hook.
(cherry picked from commit
833097cbc4856001ae77b33365faf09c1b3c30e3)
const char *
w32_get_string_resource (void *v_rdb, const char *name, const char *class)
{
- const char *rdb = v_rdb;
+ const char *rdb = *(char **) v_rdb;
if (rdb)
{