Re: [Spice-devel] [PATCH spice-server] build: Update spice-common

2017-08-11 Thread Jonathon Jongsma
Acked-by: Jonathon Jongsma On Fri, 2017-08-11 at 12:31 +0100, Frediano Ziglio wrote: > This include some Quic changes, particularly a compile fix > if no optimizations (-O0) are used. > > Signed-off-by: Frediano Ziglio > --- > spice-common | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(

[Spice-devel] [PATCH spice-server] build: Update spice-common

2017-08-11 Thread Frediano Ziglio
This include some Quic changes, particularly a compile fix if no optimizations (-O0) are used. Signed-off-by: Frediano Ziglio --- spice-common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spice-common b/spice-common index a25ebbac..429ad965 16 --- a/spice-common +++ b/

Re: [Spice-devel] [PATCH spice-gtk 5/6] channel: pass the size to store_caps

2017-08-11 Thread Frediano Ziglio
> > From: Marc-André Lureau > > Move g_array_set_size() there. > > Signed-off-by: Marc-André Lureau > --- > src/spice-channel.c | 15 --- > 1 file changed, 8 insertions(+), 7 deletions(-) > > diff --git a/src/spice-channel.c b/src/spice-channel.c > index 7cd6251..642e829 100644 >

Re: [Spice-devel] [PATCH spice-gtk 6/6] channel: don't call memcpy with NULL dest

2017-08-11 Thread Frediano Ziglio
> > From: Marc-André Lureau > > If ncaps == 0, the array will be NULL after set_size(). > > Signed-off-by: Marc-André Lureau > --- > src/spice-channel.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/src/spice-channel.c b/src/spice-channel.c > index 642e829..b6141cd 100644 > ---

Re: [Spice-devel] [PATCH spice-gtk 3/6] giopipe: return 0 and no error when peer is already closed

2017-08-11 Thread Frediano Ziglio
> > From: Marc-André Lureau > > The peer stream may be closed, but may have failed to close self, > because it has pending operations. In this case indicate EOS on IO > rather than returning an error. self will be close eventually on > dispose. > > Signed-off-by: Marc-André Lureau > --- > src