Skip to content

Commit

Permalink
XrmParseCommand and XrmMergeDatabases depend on destination database …
Browse files Browse the repository at this point in the history
…being initialized. (#366)
  • Loading branch information
nbriggs authored Feb 23, 2021
1 parent d8e063b commit c6a74b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xrdopt.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ void print_Xusage(const char *prog)
void read_Xoption(int *argc, char *argv[])
{
int bitmask;
XrmDatabase commandlineDB, applicationDB, serverDB, rDB;
XrmDatabase commandlineDB = NULL, applicationDB, serverDB, rDB = NULL;
XrmValue value;
char *str_type[30], tmp[1024], *envname;
Display *xdisplay;
Expand Down

0 comments on commit c6a74b2

Please sign in to comment.