Initialize a.prev to NULL

This commit is contained in:
Julien Danjou 2008-03-13 12:04:36 +01:00
parent eee37d063c
commit e8e02d5a5d
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ screen_xsi_to_area(XineramaScreenInfo si)
a.y = si.y_org;
a.width = si.width;
a.height = si.height;
a.next = NULL;
a.next = a.prev = NULL;
return a;
}