소스 검색

VIEWs based on lub_list_t

Serj Kalichev 6 년 전
부모
커밋
202b9d0460
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lub/list/list.c

+ 1 - 1
lub/list/list.c

@@ -233,7 +233,7 @@ lub_list_node_t *lub_list_match_node(lub_list_t *this,
 	lub_list_match_fn matchFn, const void *userkey,
 	lub_list_node_t **saveptr)
 {
-	lub_list_node_t *iter;
+	lub_list_node_t *iter = NULL;
 	if (!this || !matchFn || !this->head)
 		return NULL;
 	if (saveptr)