mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-12 20:27:53 +00:00
[client] spice: update submodule to prevent segfault on shutdown
This commit is contained in:
parent
70683010a6
commit
4411d21135
2 changed files with 12 additions and 7 deletions
|
@ -851,12 +851,6 @@ int spiceThread(void * arg)
|
|||
.port = g_params.spicePort,
|
||||
.password = "",
|
||||
.ready = spiceReady,
|
||||
.log =
|
||||
{
|
||||
.info = debug_info,
|
||||
.warn = debug_warn,
|
||||
.error = debug_error,
|
||||
},
|
||||
.clipboard =
|
||||
{
|
||||
.enable = g_params.useSpiceClipboard,
|
||||
|
@ -1065,6 +1059,17 @@ static int lg_run(void)
|
|||
return -1;
|
||||
}
|
||||
|
||||
const PSInit psInit =
|
||||
{
|
||||
.log =
|
||||
{
|
||||
.info = debug_info,
|
||||
.warn = debug_warn,
|
||||
.error = debug_error,
|
||||
}
|
||||
};
|
||||
purespice_init(&psInit);
|
||||
|
||||
if (g_params.useSpiceInput ||
|
||||
g_params.useSpiceClipboard ||
|
||||
g_params.useSpiceAudio)
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 2ba840c2e9ddee211b752a84ae8f4b4db83c9738
|
||||
Subproject commit 0cb33f30cafb3f1ca2478b18530992b6ce27b75b
|
Loading…
Reference in a new issue