Serj Kalichev před 10 roky
rodič
revize
9332700cf1
1 změnil soubory, kde provedl 1 přidání a 0 odebrání
  1. 1 0
      lub/list/list.c

+ 1 - 0
lub/list/list.c

@@ -9,6 +9,7 @@ static inline void lub_list_init(lub_list_t * this,
 	lub_list_compare_fn compareFn)
 {
 	this->head = NULL;
+	this->tail = NULL;
 	this->compareFn = compareFn;
 }