From 8637842cf9962f096791d2f2e6d4880db3324632 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Tue, 14 Oct 2014 14:47:32 -0400 Subject: [PATCH] add code to initialize data manager Signed-off-by: Chris Michael --- src/bin/e_comp_wl.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index 3d34ed2ab..582316232 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -146,6 +146,13 @@ _e_comp_wl_compositor_create(void) goto comp_global_err; } + /* try to init data manager */ + if (!e_comp_wl_data_manager_init(cdata)) + { + ERR("Could not initialize data manager"); + goto data_err; + } + /* initialize shm mechanism */ wl_display_init_shm(cdata->wl.disp); @@ -167,6 +174,7 @@ _e_comp_wl_compositor_create(void) return EINA_TRUE; +data_err: comp_global_err: e_env_unset("WAYLAND_DISPLAY"); sock_err: