summaryrefslogtreecommitdiff
path: root/mate-panel
diff options
context:
space:
mode:
authormonsta <[email protected]>2014-11-20 11:29:00 +0300
committerStefano Karapetsas <[email protected]>2014-11-20 09:30:42 +0100
commitece05e7059f946f44ffb4a1f75ec4e4d3f565f72 (patch)
tree1ca44778524028d596dbeb5447a2d29bfd05c638 /mate-panel
parent3c8dd6e27ed244059698fd981e239a2f9fab62f8 (diff)
downloadmate-panel-ece05e7059f946f44ffb4a1f75ec4e4d3f565f72.tar.bz2
mate-panel-ece05e7059f946f44ffb4a1f75ec4e4d3f565f72.tar.xz
Fix logic a bit - avoid dereferencing NULL pointer
Closes https://github.com/mate-desktop/mate-panel/pull/257
Diffstat (limited to 'mate-panel')
-rw-r--r--mate-panel/libpanel-util/panel-list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mate-panel/libpanel-util/panel-list.c b/mate-panel/libpanel-util/panel-list.c
index 154153cf..3c0a9eec 100644
--- a/mate-panel/libpanel-util/panel-list.c
+++ b/mate-panel/libpanel-util/panel-list.c
@@ -166,7 +166,7 @@ panel_g_list_resort_item (GList *list,
dl = g_list_find (list, data);
- if (dl != NULL)
+ if (dl == NULL)
return list;
while (dl->next &&