Re: [libvirt] [PATCH] util: Fix uninitalized variable to avoid garbage value.

2019-07-18 Thread Michal Privoznik
On 7/18/19 5:44 AM, Julio Faracco wrote: This commit is similar with 596aa144. It fixes an uninitialized variable to avoid garbage value. This case, it uses time 't' 0 if an error occurs with virTimeMillisNowRaw. Signed-off-by: Julio Faracco --- src/util/virtime.c | 2 +- 1 file changed, 1 i

[libvirt] [PATCH] util: Fix uninitalized variable to avoid garbage value.

2019-07-17 Thread Julio Faracco
This commit is similar with 596aa144. It fixes an uninitialized variable to avoid garbage value. This case, it uses time 't' 0 if an error occurs with virTimeMillisNowRaw. Signed-off-by: Julio Faracco --- src/util/virtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/

Re: [libvirt] [PATCH] util: Fix uninitalized variable to avoid garbage value.

2019-04-30 Thread Michal Privoznik
On 4/30/19 2:29 AM, Julio Faracco wrote: This commit is similar with 692400f4. It fixes an uninitialized variable to avoid garbage value. This case, returns 0 jiffies if an error occurs with virNetDevBridgeGet. Signed-off-by: Julio Faracco --- src/util/virnetdevbridge.c | 2 +- 1 file change

[libvirt] [PATCH] util: Fix uninitalized variable to avoid garbage value.

2019-04-29 Thread Julio Faracco
This commit is similar with 692400f4. It fixes an uninitialized variable to avoid garbage value. This case, returns 0 jiffies if an error occurs with virNetDevBridgeGet. Signed-off-by: Julio Faracco --- src/util/virnetdevbridge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [libvirt] [PATCH] util: Fix uninitalized variable to avoid garbage

2019-04-09 Thread Erik Skultety
On Mon, Apr 08, 2019 at 05:32:14PM -0300, Julio Faracco wrote: > This commit fixes an unitialized variable to avoid garbage value > when virNetDevBridgeGet method returns error. When, that method fails > before initialize 'val' variable, it can cause problems related to > that. > > Signed-off-by: J

[libvirt] [PATCH] util: Fix uninitalized variable to avoid garbage

2019-04-08 Thread Julio Faracco
This commit fixes an unitialized variable to avoid garbage value when virNetDevBridgeGet method returns error. When, that method fails before initialize 'val' variable, it can cause problems related to that. Signed-off-by: Julio Faracco --- src/util/virnetdevbridge.c | 2 +- 1 file changed, 1 in