xwayland: Move global initialization down
This commit is contained in:
parent
81d033ec73
commit
af272f2685
1 changed files with 4 additions and 4 deletions
|
@ -299,10 +299,6 @@ meta_xwayland_start (MetaXWaylandManager *manager,
|
|||
char **env;
|
||||
char *fd_string;
|
||||
|
||||
wl_global_create (wl_display, &xserver_interface,
|
||||
META_XSERVER_VERSION,
|
||||
manager, bind_xserver);
|
||||
|
||||
do
|
||||
{
|
||||
lockfile = create_lockfile (display, &display);
|
||||
|
@ -341,6 +337,10 @@ meta_xwayland_start (MetaXWaylandManager *manager,
|
|||
manager->display_index = display;
|
||||
manager->lockfile = lockfile;
|
||||
|
||||
wl_global_create (wl_display, &xserver_interface,
|
||||
META_XSERVER_VERSION,
|
||||
manager, bind_xserver);
|
||||
|
||||
/* We want xwayland to be a wayland client so we make a socketpair to setup a
|
||||
* wayland protocol connection. */
|
||||
if (socketpair (AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0, sp) < 0)
|
||||
|
|
Loading…
Reference in a new issue