diff -r adb0bda54e6b -r a2c8fc23c90e src/server/ucx/list.c --- a/src/server/ucx/list.c Thu Feb 16 15:08:38 2012 +0100 +++ b/src/server/ucx/list.c Wed Feb 22 23:20:39 2012 +0100 @@ -15,7 +15,7 @@ int ucx_list_equals(UcxList *l1, UcxList *l2, cmp_func fnc, void* data) { if (l1 == l2) return 1; - + while (l1 != NULL && l2 != NULL) { if (fnc == NULL) { if (l1->data != l2->data) return 0;