aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2004-02-17 07:35:56 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2004-02-17 07:35:56 +0000
commitba223f17f4113a665fb1da63f7809ceb6f21394c (patch)
tree28260eb302c666e2bf1badbf6a6800bbb44af953 /src
parent876c642f6866559f47e0f03d1702393a40473773 (diff)
downloadellinika-ba223f17f4113a665fb1da63f7809ceb6f21394c.tar.gz
ellinika-ba223f17f4113a665fb1da63f7809ceb6f21394c.tar.bz2
Bugfix: initialize count.
git-svn-id: file:///home/puszcza/svnroot/ellinika/trunk@16 941c8c0f-9102-463b-b60b-cd22ce0e6858
Diffstat (limited to 'src')
-rw-r--r--src/list.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/list.c b/src/list.c
index 5d25a74..32b2e72 100644
--- a/src/list.c
+++ b/src/list.c
@@ -47,6 +47,7 @@ list_create()
struct list *p = emalloc(sizeof(*p));
p->head = p->tail = NULL;
p->itr = NULL;
+ p->count = 0;
return p;
}

Return to:

Send suggestions and report system problems to the System administrator.