Re: [PATCH v2 04/17] virfdstream: Use g_new0() instead of VIR_ALLOC()

2020-08-20 Thread Peter Krempa
On Tue, Jul 07, 2020 at 21:46:22 +0200, Michal Privoznik wrote: > This switch allow us to save a few lines of code. > > Signed-off-by: Michal Privoznik > --- > src/util/virfdstream.c | 20 +++- > 1 file changed, 7 insertions(+), 13 deletions(-) Reviewed-by: Peter Krempa

[PATCH v2 04/17] virfdstream: Use g_new0() instead of VIR_ALLOC()

2020-07-07 Thread Michal Privoznik
This switch allow us to save a few lines of code. Signed-off-by: Michal Privoznik --- src/util/virfdstream.c | 20 +++- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/src/util/virfdstream.c b/src/util/virfdstream.c index 25661736ca..c85dee05c3 100644 ---