From: Pierrick Bouvier Date: Thu, 19 Sep 2024 04:46:39 +0000 (-0700) Subject: qom: remove return after g_assert_not_reached() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=02f5360d80a7a45190e31b8255b60edaf101211c;p=qemu.git qom: remove return after g_assert_not_reached() This patch is part of a series that moves towards a consistent use of g_assert_not_reached() rather than an ad hoc mix of different assertion mechanisms. Reviewed-by: Richard Henderson Signed-off-by: Pierrick Bouvier Message-ID: <20240919044641.386068-33-pierrick.bouvier@linaro.org> Signed-off-by: Thomas Huth --- diff --git a/qom/object.c b/qom/object.c index 157a45c5f8..28c5b66eab 100644 --- a/qom/object.c +++ b/qom/object.c @@ -2079,7 +2079,6 @@ const char *object_get_canonical_path_component(const Object *obj) /* obj had a parent but was not a child, should never happen */ g_assert_not_reached(); - return NULL; } char *object_get_canonical_path(const Object *obj)