Re: [Qemu-devel] [PATCH] Fix crash when connecting to VNC through websocket

2015-02-24 Thread Eric Blake
On 02/23/2015 11:09 PM, Peter Crosthwaite wrote: > The subject should read V2 as this is a resubmit. Use git format-patch > --subject-prefix="PATCH v2". Or shorter, git format-patch -v2 Also, remember that 'git send-email' will take any options understood by 'git format-patch'. -- Eric Blake

Re: [Qemu-devel] [PATCH] Fix crash when connecting to VNC through websocket

2015-02-23 Thread Peter Crosthwaite
The subject should read V2 as this is a resubmit. Use git format-patch --subject-prefix="PATCH v2". On Mon, Feb 23, 2015 at 4:29 PM, Jorge Acereda Maciá wrote: > Please, forget my previous patch, worked somehow with Chrome but failed with > Safari (with a good reason, the sent headers were incor

[Qemu-devel] [PATCH] Fix crash when connecting to VNC through websocket

2015-02-23 Thread Jorge Acereda Maciá
Please, forget my previous patch, worked somehow with Chrome but failed with Safari (with a good reason, the sent headers were incorrect). This one should be correct and simpler. Signed-off-by: Jorge Acereda Macia --- ui/vnc-ws.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff -

Re: [Qemu-devel] [PATCH] Fix crash when connecting to VNC through websocket

2015-02-22 Thread Gerd Hoffmann
On So, 2015-02-22 at 22:58 +0100, Jorge Acereda Maciá wrote: > Connecting to VNC through websocket crashes in vnc_flush() when trying > to acquire a mutex that hasn't been initialized (vnc_init_state(vs) > hasn't been called at this point). Added to vnc queue. thanks, Gerd

[Qemu-devel] [PATCH] Fix crash when connecting to VNC through websocket

2015-02-22 Thread Jorge Acereda Maciá
Connecting to VNC through websocket crashes in vnc_flush() when trying to acquire a mutex that hasn't been initialized (vnc_init_state(vs) hasn't been called at this point). Signed-off-by: Jorge Acereda Macia --- ui/vnc-ws.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/u