Initialize area queue head

Adding missing initialization for area queue head
This commit is contained in:
rootcoma 2014-08-07 01:42:38 -07:00
parent 1a6143cd1f
commit 1a1caf7268
1 changed files with 3 additions and 0 deletions

3
bar.c
View File

@ -908,6 +908,9 @@ init (void)
/* Initialiaze monitor list head and tail */
monhead = montail = NULL;
/* Initialize area queue list head */
aqueuehead = NULL;
/* Check if RandR is present */
qe_reply = xcb_get_extension_data(c, &xcb_randr_id);