Re: [PATCH v3 0/2] qga: Ditch g_get_host_name()

2020-07-13 Thread Philippe Mathieu-Daudé
Ping^2? On 7/10/20 11:43 AM, Michal Privoznik wrote: > On 6/22/20 8:19 PM, Michal Privoznik wrote: >> v3 of: >> >> https://lists.nongnu.org/archive/html/qemu-devel/2020-06/msg06913.html >> >> diff to v2: >> - don't leak @hostname in util/oslib-posix.c:qemu_get_host_name() >> - document why we are

Re: [PATCH v3 0/2] qga: Ditch g_get_host_name()

2020-07-10 Thread Michal Privoznik
On 6/22/20 8:19 PM, Michal Privoznik wrote: v3 of: https://lists.nongnu.org/archive/html/qemu-devel/2020-06/msg06913.html diff to v2: - don't leak @hostname in util/oslib-posix.c:qemu_get_host_name() - document why we are allocating one byte more than needed - switch to g_new0() from g_malloc0(

[PATCH v3 0/2] qga: Ditch g_get_host_name()

2020-06-22 Thread Michal Privoznik
v3 of: https://lists.nongnu.org/archive/html/qemu-devel/2020-06/msg06913.html diff to v2: - don't leak @hostname in util/oslib-posix.c:qemu_get_host_name() - document why we are allocating one byte more than needed - switch to g_new0() from g_malloc0(). Michal Privoznik (2): util: Introduce qe