mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-01-11 14:43:57 +00:00
[CLIENT] Fixed invalid value initialization
This commit is contained in:
parent
80f5d3a660
commit
909606627f
1 changed files with 3 additions and 1 deletions
|
@ -1604,6 +1604,7 @@ int main(int argc, char * argv[])
|
||||||
{
|
{
|
||||||
params.shmFile = strdup(params.shmFile);
|
params.shmFile = strdup(params.shmFile);
|
||||||
params.spiceHost = strdup(params.spiceHost);
|
params.spiceHost = strdup(params.spiceHost);
|
||||||
|
params.windowTitle = strdup(params.windowTitle);
|
||||||
|
|
||||||
{
|
{
|
||||||
// load any global then local config options first
|
// load any global then local config options first
|
||||||
|
@ -1885,6 +1886,7 @@ int main(int argc, char * argv[])
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
case 't':
|
case 't':
|
||||||
|
free(params.windowTitle);
|
||||||
params.windowTitle = strdup(optarg);
|
params.windowTitle = strdup(optarg);
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue