-
Hailiang Zhang authored
In this file, we don't check the return value of malloc/strdup/realloc which may fail. Instead of using these routines, we use the GLib memory APIs g_malloc/g_strdup/g_realloc. They will exit on allocation failure, so there is no need to test for failure, which would be fine for setup. Signed-off-by:
zhanghailiang <zhang.zhanghailiang@huawei.com>
Reviewed-by:
Alex Bennée <alex.bennee@linaro.org>
Signed-off-by:
Michael Tokarev <mjt@tls.msk.ru>Hailiang Zhang authoredIn this file, we don't check the return value of malloc/strdup/realloc which may fail. Instead of using these routines, we use the GLib memory APIs g_malloc/g_strdup/g_realloc. They will exit on allocation failure, so there is no need to test for failure, which would be fine for setup. Signed-off-by:
zhanghailiang <zhang.zhanghailiang@huawei.com>
Reviewed-by:
Alex Bennée <alex.bennee@linaro.org>
Signed-off-by:
Michael Tokarev <mjt@tls.msk.ru>
Loading