Replace free() with g_free() in cases where the memory was allocated with g_malloc() and similar. Note that there are some plain free()s left because the memory is allocated e.g. by asprintf or __cxa_demangle.
See also abrt/abrt#1567
Also, replace a few forgotten malloc()s with g_malloc().
Replace
free()
withg_free()
in cases where the memory was allocated with g_malloc() and similar. Note that there are some plainfree()
s left because the memory is allocated e.g. byasprintf
or__cxa_demangle
.See also abrt/abrt#1567
Also, replace a few forgotten malloc()s with g_malloc().