[PATCH] wayland-server: Fix a uninitialized warning from clang

Aaron Faanes dafrito at gmail.com
Wed Aug 28 15:43:34 PDT 2013


This warning is unnecessary, since the pointer in question is only used
for pointer arithmetic, but setting it explicitly to NULL doesn't hurt.
---
 src/wayland-server.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/wayland-server.c b/src/wayland-server.c
index a1d69e5..d7c58b9 100644
--- a/src/wayland-server.c
+++ b/src/wayland-server.c
@@ -501,7 +501,7 @@ wl_resource_get_link(struct wl_resource *resource)
 WL_EXPORT struct wl_resource *
 wl_resource_from_link(struct wl_list *link)
 {
-	struct wl_resource *resource;
+	struct wl_resource *resource = NULL;
 
 	return wl_container_of(link, resource, link);
 }
-- 
1.8.3.1



More information about the wayland-devel mailing list